-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.16 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
62
63
64
65
66
67
68
{
"name": "@chharvey/counterpoint",
"version": "0.4.1",
"description": "A robust programming language.",
"homepage": "https://github.com/chharvey/counterpoint#readme",
"bugs": {
"url": "https://github.com/chharvey/counterpoint/issues"
},
"license": "AGPL-3.0-or-later",
"author": "Chris Harvey <[email protected]>",
"main": "build/main.js",
"type": "module",
"bin": {
"cpc": "bin/cpc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chharvey/counterpoint.git"
},
"scripts": {
"cpc": "cpc",
"cpc-h": "cpc -h",
"cpc-v": "cpc -v",
"cpc:c": "cpc c ./sample/test-v0.4.cp",
"cpc:c-o": "cpc c ./sample/test-v0.4.cp -o ./sample/testout.wasm",
"cpc:c-p": "cpc c ./sample/test-v0.4.cp -p ./sample/counterpoint-config.json",
"cpc:d": "cpc d ./sample/test-v0.4.cp",
"cpc:d-o": "cpc d ./sample/test-v0.4.cp -o ./sample/testout.wat",
"cpc:d-p": "cpc d ./sample/test-v0.4.cp -p ./sample/counterpoint-config.json",
"cpc:r": "cpc r ./sample/test-v0.4.wasm",
"npmplease": "rm -rf ./node_modules/ ./tree-sitter-counterpoint/node_modules/ package-lock.json && npm install",
"predist": "eslint .",
"dist": "tsc",
"test": "mocha -r ts-node/esm src/index.ts --loader='ts-node/esm' --timeout 10000 './test/**/*.test.ts'",
"prebuild": "npm run build -w tree-sitter-counterpoint && npm rebuild",
"build": "rm -rf ./build/ && npm run dist && npm run test"
},
"dependencies": {
"@chharvey/requirejson": "^2.0.0",
"binaryen": "^116.0.0",
"extrajs": "^0.25.0",
"fast-deep-equal": "^3.1.3",
"minimist": "^1.2.6",
"tree-sitter": "~0.22.1",
"utf8": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.6.2",
"@types/minimist": "^1.2.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/utf8": "^3.0.0",
"eslint": "^9.16.0",
"globals": "^15.9.0",
"mocha": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "~5.7.0",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": "^22.12"
},
"private": true,
"workspaces": [
"tree-sitter-counterpoint"
]
}