-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "jmcc",
"version": "1.1.21",
"description": "Компилятор кода JustCode",
"main": "dist/index.js",
"bin": "dist/index.js",
"keywords": [
"antlr",
"minecraft"
],
"author": "rqbik",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@gitbeaker/rest": "^39.12.0",
"@rqbik/mtext": "^1.0.7",
"antlr4ts": "^0.5.0-alpha.4",
"chalk": "4",
"commander": "^9.3.0",
"env-paths": "2",
"minecraft-data": "^3.4.0",
"mkdirp": "^1.0.4",
"mojangson": "^2.0.2",
"node-fetch": "2",
"ora": "5"
},
"devDependencies": {
"@js.properties/properties": "^0.5.4",
"@types/jest": "^28.1.1",
"@types/markdown-table": "2.0.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.35",
"@types/node-fetch": "^2.6.1",
"@types/strip-ansi": "3.0.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"dotenv": "^16.0.1",
"jest": "^28.1.1",
"jest-fail-on-console": "^2.4.2",
"markdown-table": "2.0.0",
"pkg": "^5.8.0",
"strip-ansi": "3.0.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"scripts": {
"build": "yarn build:grammar && yarn build:ts",
"build:grammar": "yarn clean && cd src/core/grammar && antlr4ts -o .compiled -visitor -no-listener JustCodeLexer.g4 JustCodeParser.g4",
"build:ts": "tsc --build src",
"package": "pkg . -t node16-linux-x64,node16-win-x64",
"clean": "rm -rf src/core/grammar/.??*/",
"start": "node dist/index.js",
"dev": "yarn build:ts && yarn start",
"docs": "yarn build:ts && node dist/docs/index.js",
"tree": "bash scripts/tree.sh",
"data": "ts-node scripts/data.ts",
"test": "bash scripts/test.sh"
}
}