-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "langium-sql-workspace",
"private": true,
"displayName": "SQL Language Server",
"description": "Extensible language server for SQL",
"publisher": "langium",
"license": "MIT",
"scripts": {
"clean": "shx rm -rf packages/**/lib packages/**/dist packages/**/*.tsbuildinfo",
"build": "npm run build --workspace=langium-sql --workspace=langium-sql-vscode",
"watch": "concurrently -c blue,yellow -n tsc,vscode \"npm run watch --workspace=langium-sql\" \"npm run watch --workspace=langium-sql-vscode\"",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "npm run lint --workspaces"
},
"devDependencies": {
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitest/coverage-v8": "^1.3.1",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-plugin-header": "^3.1.1",
"shx": "^0.3.4",
"typescript": "~4.9.4",
"vitest": "^1.3.1"
},
"volta": {
"node": "18.17.1",
"npm": "9.6.7"
},
"repository": {
"type": "git",
"url": "https://github.com/langium/langium-sql"
},
"bugs": "https://github.com/langium/langium-sql/issues",
"author": {
"name": "TypeFox",
"url": "https://www.typefox.io"
},
"workspaces": [
"packages/*"
]
}