-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1013 Bytes
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
{
"name": "js-compiler",
"version": "1.0.0",
"type": "module",
"bin": {
"js-compiler": "./dist/cli.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"start": "node dist/cli.js",
"dev": "nodemon --exec ts-node src/cli.ts",
"test": "node dist/cli.js test.js -o test.xexe --debug",
"test:ast": "node dist/cli.js test.js --dump-ast",
"test:tac": "node dist/cli.js test.js --dump-tac",
"prepublishOnly": "npm run build",
"test:file": "ts-node tests/runner.ts",
"test:modules": "npm run build && ts-node tests/modules/run-tests.ts",
"test:optimizer": "npm run build && node tests/optimizer/run-tests.js",
"test:tooling": "npm run build && ts-node tests/tooling/run-tests.ts"
},
"devDependencies": {
"@types/node": "^25.5.0",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"commander": "^14.0.3"
}
}