-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
{
"name": "langium-crmscript",
"description": "Please enter a brief description here",
"version": "0.0.1",
"files": [
"out",
"src"
],
"type": "module",
"scripts": {
"build": "tsc -b tsconfig.src.json && node esbuild.mjs",
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.src.json --watch\" \"node esbuild.mjs --watch\"",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch",
"vscode:prepublish": "npm run build && npm run lint",
"test": "vitest run"
},
"dependencies": {
"langium": "~3.0.0",
"vscode-languageclient": "~9.0.1",
"vscode-languageserver": "~9.0.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "~6.4.1",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"eslint": "~8.47.0",
"langium-cli": "~3.0.0",
"typescript": "~5.1.6",
"@types/vscode": "~1.67.0",
"concurrently": "~8.2.1",
"esbuild": "~0.19.2",
"vitest": "~1.0.0"
},
"displayName": "langium-crmscript",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "crmscript-definition",
"aliases": [
"crmscript Definition",
"crmscript-definition"
],
"extensions": [".crmscript-definition"],
"configuration": "./language-configuration.json"
}, {
"id": "crmscript-implementation",
"aliases": [
"crmscript Implementation",
"crmscript-implementation"
],
"extensions": [".crmscript"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "crmscript-definition",
"scopeName": "source.crmscript-definition",
"path": "./syntaxes/crmscript-definition.tmLanguage.json"
},
{
"language": "crmscript-implementation",
"scopeName": "source.crmscript-implementation",
"path": "./syntaxes/crmscript-implementation.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:crmscript"
],
"main": "./out/extension/main.cjs"
}