-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@cicada-lang/chimera",
"version": "0.4.8",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/cicada-lang/chimera.git"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"src",
"lib"
],
"bin": {
"chimera": "bin/chimera.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:js": "node --test",
"test:chimera": "test-runner snapshot 'node ./bin/chimera run --no-color' 'examples/**/*.ch' --exclude 'examples/**/*.error.ch'",
"test:chimera-error": "test-runner snapshot-error 'node ./bin/chimera run --no-color' 'examples/**/*.error.ch'",
"test": "npm run test:js && npm run test:chimera && npm run test:chimera-error",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.1.3",
"@xieyuheng/ty": "^0.3.1",
"immutable": "^5.0.3",
"node-watch": "^0.7.4",
"picocolors": "^1.1.1",
"readdirp": "^4.0.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@xieyuheng/test-runner": "^0.2.10",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2"
}
}