forked from TypeFox/typir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.06 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
48
49
50
51
52
53
{
"name": "typir-workspace",
"displayName": "typir",
"description": "Please enter a brief description here",
"version": "0.0.1",
"private": true,
"engineStrict": true,
"type": "module",
"engines": {
"node": ">= 18.0.0",
"npm": ">= 9.5.0"
},
"volta": {
"node": "18.20.4",
"npm": "10.7.0"
},
"scripts": {
"postinstall": "npm run langium:generate",
"clean": "shx rm -rf packages/**/lib packages/**/out packages/**/*.tsbuildinfo examples/**/lib examples/**/out examples/**/*.tsbuildinfo",
"build": "tsc -b tsconfig.build.json && npm run build --workspaces",
"watch": "concurrently -n typir,typir-langium,ox,lox -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\"",
"lint": "npm run lint --workspaces",
"test": "vitest",
"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 -X -d",
"version:dependencies": "node ./scripts/update-version.js && npm install"
},
"devDependencies": {
"@types/node": "~18.19.55",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"@vitest/ui": "~2.1.2",
"concurrently": "~9.0.1",
"editorconfig": "~2.0.0",
"esbuild": "~0.24.0",
"eslint": "~8.57.1",
"eslint-plugin-header": "~3.1.1",
"fs-extra": "^11.2.0",
"shx": "~0.3.4",
"typescript": "~5.5.4",
"vitest": "~2.1.2"
},
"workspaces": [
"packages/typir",
"packages/typir-langium",
"examples/ox",
"examples/lox"
]
}