-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.7 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
{
"name": "@cicada-lang/cicada",
"version": "0.8.25",
"repository": "github:cicada-lang/cicada",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib"
],
"bin": {
"cic": "bin/cic.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:ts": "vitest --dir src --run",
"test:cic:tests": "test-runner snapshot 'node ./bin/cic.js --no-color' 'docs/tests/**/*.(cic|md)' --exclude 'docs/tests/**/*.(error|todo).(cic|md)'",
"test:cic:tests-error": "test-runner snapshot-error 'node ./bin/cic.js --no-color' 'docs/tests/**/*.error.(cic|md)'",
"test:cic:std": "test-runner snapshot 'node ./bin/cic.js --no-color' 'docs/std/**/*.(cic|md)' --exclude 'docs/std/**/*.(error|todo).(cic|md)'",
"test:cic:std-error": "test-runner snapshot-error 'node ./bin/cic.js --no-color' 'docs/std/**/*.error.(cic|md)'",
"test:cic": "npm run test:cic:tests && npm run test:cic:tests-error && npm run test:cic:std && npm run test:cic:std-error",
"test": "npm run test:ts && npm run test:cic",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/framework": "^0.2.0",
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.1.2",
"@xieyuheng/ty": "^0.2.1",
"commonmark": "^0.31.2",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"picocolors": "^1.1.0",
"readdirp": "^4.0.1"
},
"devDependencies": {
"@types/commonmark": "^0.27.9",
"@types/lodash": "^4.17.9",
"@types/node": "^22.6.1",
"@xieyuheng/test-runner": "^0.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"license": "GPL-3.0-or-later"
}