-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
40
41
42
43
44
45
{
"name": "@cicada-lang/framework",
"type": "module",
"version": "0.2.0",
"repository": "github:cicada-lang/framework",
"main": "./lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"build": "rm -r lib && tsc",
"build:watch": "rm -r lib && tsc --watch",
"test:ts": "vitest --dir src --run",
"test:watch": "vitest --dir src",
"test": "npm run test:ts",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.1.2",
"@xieyuheng/ty": "^0.2.1",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"immutable": "^4.3.4",
"node-watch": "^0.7.4",
"picocolors": "^1.0.0",
"readdirp": "^3.6.0",
"readline-sync": "^1.4.10",
"sync-request": "^6.1.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/commonmark": "^0.27.9",
"@types/node": "^20.11.0",
"@types/readline-sync": "^1.4.8",
"@xieyuheng/test-runner": "^0.2.10",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.1.3"
},
"license": "GPL-3.0-or-later"
}