-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.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
{
"name": "@cicada-lang/inet-cute",
"version": "0.2.2",
"repository": "github:cicada-lang/inet-cute",
"license": "GPL-3.0-or-later",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"bin": {
"inet-cute": "bin/inet-cute.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:ts": "vitest --dir src --run",
"test:inet": "test-runner snapshot 'node ./bin/inet-cute.js run --no-color' 'tests/**/*.i' --exclude 'tests/**/*.error.i'",
"test:inet-error": "test-runner snapshot-error 'node ./bin/inet-cute.js run --no-color' 'tests/**/*.error.i'",
"test": "npm run test:ts && npm run test:inet && npm run test:inet-error",
"format": "prettier src docs --write"
},
"dependencies": {
"@cicada-lang/framework": "^0.2.0",
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.1.2",
"@xieyuheng/ty": "^0.3.1",
"picocolors": "^1.1.1",
"vitest": "^2.1.4"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@xieyuheng/test-runner": "^0.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.3"
}
}