-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 KB
/
package.json
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
{
"name": "@captureage/calang",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@types/js-beautify": "^1.8.2",
"@types/node": "^13.9.8",
"@types/yargs": "^15.0.4",
"@yarnpkg/pnpify": "^2.0.0-rc.20",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/react": "^16.9.31",
"@types/react-dom": "^16.9.6",
"antlr4ts": "^0.5.0-alpha.3",
"antlr4ts-cli": "^0.5.0-alpha.3",
"js-beautify": "^1.10.3",
"next": "^9.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.3",
"yargs": "^15.3.1"
},
"main": "lib/src/index.js",
"scripts": {
"gen-lang": "antlr4ts -visitor src/CALang.g4 -o grammar",
"tsc-watch": "tsc -watch",
"tsc": "tsc",
"postinstall": "yarn run tsc",
"build-examples": "calang -o public/examples examples/p2pchat.ca && calang -o public/examples examples/doodle.ca && calang -o public/examples examples/counter-button.ca && calang -o public/examples examples/simple-onclick.ca"
},
"bin": {
"calang": "bin/calang"
}
}