-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "langium-lox-workspace",
"displayName": "langium-lox-workspace",
"description": "langium-lox-workspace",
"private": true,
"type": "module",
"devDependencies": {
"@types/node": "~20.11.5",
"@typescript-eslint/eslint-plugin": "~6.19.0",
"@typescript-eslint/parser": "~6.19.0",
"concurrently": "~8.2.2",
"eslint": "~8.56.0",
"shx": "~0.3.4",
"typescript": "~5.3.3"
},
"scripts": {
"clean": "npm run clean --workspaces",
"compile": "npm run compile --workspaces",
"watch": "npm run clean && concurrently -n tsc,langium,vscode -c blue,cyan,magenta \"tsc --build tsconfig.build.json --watch --verbose\" \"npm run watch:langium\" \"npm run watch:esbuild\"",
"watch:langium": "npm run watch:langium --workspace langium",
"watch:esbuild": "npm run watch:esbuild --workspace vscode",
"build": "npm run clean && npm run compile",
"lint": "eslint **/src/**/*.ts",
"vscode:prepublish": "npm run lint && npm run vscode:prepublish --workspace vscode"
},
"volta": {
"node": "20.11.0",
"npm": "10.2.4"
},
"workspaces": [
"langium",
"vscode"
]
}