-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.41 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.41 KB
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.5.0-beta.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 <1362083+chharvey@users.noreply.github.com>",
"main": "dist/main.js",
"type": "module",
"bin": {
"cplc": "bin/cplc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chharvey/counterpoint.git"
},
"scripts": {
"cplc": "npx cplc",
"cplc-h": "npx cplc -h",
"cplc-v": "npx cplc -v",
"cplc:c": "npx cplc c ./sample/test-v0.5.cpls",
"cplc:c-o": "npx cplc c ./sample/test-v0.5.cpls -o ./sample/testout.wasm",
"cplc:c-p": "npx cplc c ./sample/test-v0.5.cpls -p ./sample/counterpoint-config.json",
"cplc:d": "npx cplc d ./sample/test-v0.5.cpls",
"cplc:d-o": "npx cplc d ./sample/test-v0.5.cpls -o ./sample/testout.wat",
"cplc:d-p": "npx cplc d ./sample/test-v0.5.cpls -p ./sample/counterpoint-config.json",
"cplc:r": "npx cplc r ./sample/test-v0.5.wasm",
"npmplease": "rm -rf ./node_modules/ ./tree-sitter-counterpoint/node_modules/ ./package-lock.json && npm install",
"compile": "rm -rf ./dist/ && tsc && tsc --project ./test/tsconfig.json",
"lint": "eslint",
"test": "n exec 24 tsx --test --test-isolation=none -- './test/**/*.test.ts'",
"test:only": "n exec 24 tsx --test --test-only --test-isolation=none -- './test/**/*.test.ts'",
"justbuild": "npm run build --ignore-scripts -w ./tree-sitter-counterpoint/ && npm rebuild",
"prebuild": "npm run build -w ./tree-sitter-counterpoint/ && npm rebuild",
"build": "npm run compile && npm run lint && npm run test"
},
"dependencies": {
"binaryen": "^129.0.0",
"extrajs": "^0.27.0",
"fast-deep-equal": "^3.1.3",
"minimist": "^1.2.6",
"tree-sitter": "^0.25.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^5.2.0",
"@types/minimist": "^1.2.0",
"@types/node": "^24.0.14",
"@types/utf8": "^3.0.0",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^17.0.0",
"n": "^10.2.0",
"tsx": "^4.19.3",
"typescript": "~5.9.0",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": "^22.22"
},
"private": true,
"workspaces": [
"tree-sitter-counterpoint"
]
}