-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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/mugda",
"version": "0.1.22",
"repository": "github:cicada-lang/mugda",
"main": "./lib/index.js",
"files": [
"src",
"lib"
],
"bin": {
"mu": "bin/mu.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:ts": "vitest --dir src --threads false --run",
"test:watch": "vitest --dir src --threads false",
"test:mu:docs": "test-runner snapshot './bin/mu.js' 'docs/**/*.(mu|md)' --exclude 'docs/**/*.error.(mu|md)'",
"test:mu:docs-error": "test-runner snapshot-error './bin/mu.js' 'docs/**/*.error.(mu|md)'",
"test:mu": "npm run test:mu:docs && npm run test:mu:docs-error",
"test": "npm run test:ts && npm run test:mu",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/framework": "^0.1.5",
"@cicada-lang/partech": "^0.2.5",
"@cicada-lang/sexp": "^0.0.36",
"@xieyuheng/command-line": "^0.0.11",
"@xieyuheng/ty": "^0.1.23",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"node-watch": "^0.7.4",
"readdirp": "^3.6.0"
},
"devDependencies": {
"@types/commonmark": "^0.27.7",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.0",
"@xieyuheng/test-runner": "^0.2.9",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"license": "GPL-3.0-or-later"
}