-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "quickjs-typescript",
"version": "0.1.0",
"description": "TypeScript to QuickJS Bytecode Compiler",
"main": "dist/compiler.js",
"scripts": {
"gen:env": "tsx scripts/getEnv.ts",
"audit:env": "tsx scripts/auditEnv.ts",
"audit:spec": "tsx scripts/auditSpec.ts",
"build": "npm run gen:env && tsc",
"build:wasm": "tsx scripts/buildWasm.ts",
"start": "tsx src/cli.ts",
"compile": "tsx src/cli.ts",
"dump": "tsx scripts/dump.ts",
"compare": "tsx scripts/compareWithWasm.ts",
"compare:fixture": "tsx scripts/compareWithWasm.ts",
"compare:fixtures": "tsx scripts/compareAllFixtures.ts",
"import:quickjs-tests": "tsx scripts/importQuickJSTestsToFixtures.ts",
"parse-bytecode": "tsx scripts/parseBytecode.ts",
"test": "npm run gen:env && jest"
},
"devDependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@types/babel__core": "^7.20.5",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.13",
"jest": "^30.1.3",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2"
},
"dependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-typescript": "^7.27.1",
"tsx": "^4.20.5"
}
}