-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.21 KB
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
48
49
50
51
52
53
54
55
56
{
"name": "typir-workspace",
"displayName": "typir",
"description": "Please enter a brief description here",
"version": "0.3.2",
"private": true,
"engineStrict": true,
"type": "module",
"engines": {
"node": ">= 20.19.6",
"npm": ">= 11.9.0"
},
"scripts": {
"postinstall": "npm run langium:generate",
"clean": "npm run clean --workspaces && shx rm -rf coverage",
"build": "tsc -b tsconfig.build.json && npm run build --workspaces",
"watch": "concurrently -n typir,typir-langium,ox,lox,expression -c blue,blue,green,green \"tsc -b tsconfig.build.json -w\" \"npm run watch --workspace=typir\" \"npm run watch --workspace=typir-langium\" \"npm run watch --workspace=examples/ox\" \"npm run watch --workspace=examples/lox\" \"npm run watch --workspace=examples/expression\"",
"lint": "npm run lint --workspaces",
"docs": "typedoc",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:run": "vitest --run",
"test-ui": "vitest --ui",
"langium:generate": "npm run langium:generate --workspace=examples/ox --workspace=examples/lox",
"langium:watch": "npm run langium:watch --workspace=examples/ox --workspace=examples/lox",
"vscode:prepublish": "npm run build && npm run lint",
"reset:repo": "git clean -f -d -x",
"version:dependencies": "node ./scripts/update-version.js && npm install"
},
"devDependencies": {
"@types/node": "~20.19.6",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"@vitest/coverage-v8": "~3.2.4",
"@vitest/ui": "~3.2.4",
"concurrently": "~9.0.1",
"editorconfig": "~2.0.0",
"esbuild": "^0.25.12",
"eslint": "~8.57.1",
"eslint-plugin-header": "~3.1.1",
"fs-extra": "^11.2.0",
"semver": "^7.7.1",
"shx": "~0.3.4",
"typedoc": "^0.27.9",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "~5.8.2",
"vitest": "~3.2.4"
},
"workspaces": [
"packages/typir",
"packages/typir-langium",
"examples/ox",
"examples/lox",
"examples/expression"
]
}