-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 748 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 748 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
{
"name": "updigitalscript",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"download-grammar": "sh ./scripts/download-grammar.sh",
"download-js-aux-files": "sh ./scripts/download-js-aux-files.sh",
"gen-js-grammar": "sh ./scripts/gen-js-grammar.sh",
"compile-grammar": "tsc",
"init": "npm run download-grammar && npm run gen-js-grammar && npm run download-js-aux-files && npm run compile-grammar",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"antlr4ng": "^3.0.5",
"antlr4ng-cli": "^2.0.0",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"typescript": "^5.6.2"
}
}