-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
37
38
39
40
41
42
{
"name": "@terran-one/ldtk",
"version": "0.1.7-rc.1",
"description": "Tools for creating languages in TypeScript",
"main": "dist/index.js",
"author": "Terran One",
"license": "MIT",
"devDependencies": {
"@types/antlr4": "^4.11.2",
"@types/node": "^18.11.11",
"antlr4ts": "^0.5.0-alpha.4",
"antlr4ts-cli": "^0.5.0-alpha.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"prepack": "npm run build",
"postpack": "rm -rf dist",
"publish": "yarn npm publish",
"build": "rm -rf dist && tsc",
"build:types": "tsc --declaration --emitDeclarationOnly",
"sample:gen:toylang": "ts-node ./sample/ToyLang/generate.ts"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"antlr4": "^4.11.0",
"chalk": "^4",
"reflect-metadata": "^0.1.13",
"runtypes": "^6.6.0",
"ts-morph": "^17.0.1",
"z3-solver": "^4.11.2"
}
}