-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.89 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
{
"name": "antlr4wasm",
"version": "0.1.0",
"description": "ANTLR4 runtime for WebAssembly",
"type": "module",
"keywords": [
"antlr",
"antlr4",
"antlr4-runtime",
"wasm",
"webassembly"
],
"author": "Mike Lischke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mike-lischke/antl4wasm.git"
},
"types": "lib/antlr4-runtime-wasm.d.ts",
"scripts": {
"build-wasm-debug": "./scripts/build-debug.sh",
"build-wasm-release": "./scripts/build-release.sh",
"build-cpp": "cd benchmarks/mysql/targets/antlr4-cpp/ && ./build.sh",
"build-ts": "tsc -w",
"generate-test-parser": "./scripts/generate.sh",
"generate-benchmark-parsers": "cd ./benchmarks/mysql && ./generate.sh",
"run-cpp-benchmark": "cd benchmarks/mysql/targets/antlr4-cpp/ && ./mysql-benchmark",
"run-antlr4ng-benchmark": "node --no-warnings=ExperimentalWarning --loader ts-node/esm benchmarks/mysql/targets/antlr4ng/run-benchmark.ts",
"run-antlr4-benchmark": "node --no-warnings=ExperimentalWarning --loader ts-node/esm benchmarks/mysql/targets/antlr4/run-benchmark.ts",
"run-antlr4ts-benchmark": "node --no-warnings=ExperimentalWarning --loader ts-node/esm benchmarks/mysql/targets/antlr4ts/run-benchmark.ts",
"run-antlr4wasm-benchmark": "node --no-warnings=ExperimentalWarning --loader ts-node/esm benchmarks/mysql/targets/antlr4wasm/run-benchmark.ts"
},
"devDependencies": {
"@tsconfig/node-lts-strictest-esm": "18.12.1",
"@types/emscripten": "1.39.10",
"@types/node": "20.11.26",
"antlr4": "4.13.1-patch-1",
"antlr4ng": "3.0.3",
"antlr4ng-cli": "^2.0.0",
"antlr4ts": "0.5.0-alpha.4",
"antlr4ts-cli": "0.5.0-alpha.4",
"ts-node": "10.9.2",
"typescript": "5.4.2"
}
}