-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "chadscript",
"version": "0.1.0",
"description": "A JavaScript to native code compiler using LLVM",
"type": "module",
"main": "dist/chad-node.js",
"bin": {
"chad": "./dist/chad-node.js"
},
"scripts": {
"compile": "tsx src/chad-node.ts build",
"build": "tsc",
"test": "node scripts/test.js",
"test:fast": "npm run build && node --import tsx --test tests/smoke.test.ts",
"test:full": "node scripts/test.js",
"test:verbose": "node --import tsx --test --test-reporter=spec tests/**/*.test.ts",
"cli-tests": "node --import tsx scripts/run-cli-tests.ts",
"check-progress": "node --import tsx scripts/check-progress.ts",
"examples": "node scripts/run-examples.js",
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit && npm run test:fast",
"test:parity": "npm run build && node --import tsx --test tests/ast-parity.test.ts",
"verify": "bash scripts/verify.sh",
"verify:quick": "bash scripts/verify.sh --quick",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,json,md,yml,yaml}": "prettier --write"
},
"keywords": [
"compiler",
"llvm",
"javascript",
"native"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.0.0",
"date-fns": "^4.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"ts-node": "^10.9.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"express": "^5.2.1",
"tree-sitter": "^0.21.1",
"tree-sitter-typescript": "^0.23.2"
}
}