-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "testLangium",
"description": "Please enter a brief description here",
"version": "0.0.1",
"files": [
"out",
"src"
],
"type": "module",
"scripts": {
"build": "tsc -b tsconfig.json && node esbuild.mjs",
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.json --watch\" \"node esbuild.mjs --watch\"",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:generate:production": "langium generate --mode=production",
"langium:watch": "langium generate --watch",
"vscode:prepublish": "npm run build && npm run lint"
},
"dependencies": {
"langium": "~3.3.0",
"vscode-languageclient": "~9.0.1",
"vscode-languageserver": "~9.0.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "~7.3.1",
"@typescript-eslint/eslint-plugin": "~7.3.1",
"eslint": "~8.57.0",
"langium-cli": "~3.3.0",
"typescript": "~5.1.6",
"@types/vscode": "~1.67.0",
"concurrently": "~8.2.1",
"esbuild": "~0.20.2"
},
"volta": {
"node": "18.19.1",
"npm": "10.2.4"
},
"displayName": "testLangium",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "lang-test",
"aliases": [
"langTest",
"lang-test"
],
"extensions": [".lt"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lang-test",
"scopeName": "source.lang-test",
"path": "syntaxes/lang-test.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:lang-test"
],
"main": "./out/extension/main.cjs"
}