forked from Greglar4/langiumVsCodeHotExitMRE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.06 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.06 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mre",
"description": "Please enter a brief description here",
"version": "0.0.1",
"type": "module",
"scripts": {
"clean": "rimraf out/",
"build": "langium generate && 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 clean && npm run langium:generate && tsc -b tsconfig.json && node esbuild.mjs --minify",
"vscode:package": "npm run vscode:prepublish && vsce package --no-dependencies --allow-missing-repository --skip-license"
},
"dependencies": {
"@eclipse-glsp/client": "2.3.0",
"@eclipse-glsp/layout-elk": "2.3.0",
"@eclipse-glsp/protocol": "2.3.0",
"@eclipse-glsp/server": "2.3.0",
"@eclipse-glsp/sprotty": "2.3.0",
"@eclipse-glsp/vscode-integration": "2.3.0",
"@eclipse-glsp/vscode-integration-webview": "2.3.0",
"inversify": "6.1.3",
"langium": "~3.3",
"object-hash": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vscode-languageclient": "~9.0.1",
"vscode-languageserver": "~9.0.1"
},
"devDependencies": {
"@types/node": "~20.11.7",
"@types/object-hash": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/vscode": "^1.96.0",
"@types/vscode-webview": "^1.57.5",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"@typescript-eslint/parser": "~6.4.1",
"@vscode/vsce": "~3.2",
"@vscode/codicons": "^0.0.25",
"balloon-css": "^0.5.0",
"concurrently": "~8.2.1",
"esbuild": "~0.19.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "~8.47.0",
"langium-cli": "~3.3",
"typescript": "~5.1.6"
},
"volta": {
"node": "18.19.1",
"npm": "10.2.4"
},
"displayName": "mre",
"engines": {
"vscode": "^1.96.2"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "mre",
"aliases": [
"MRE",
"mre"
],
"extensions": [
".mre"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mre",
"scopeName": "source.mre",
"path": "syntaxes/mre.tmLanguage.json"
}
],
"customEditors": [
{
"viewType": "mre.glspDiagram",
"displayName": "MRE Diagram Editor",
"selector": [
{
"filenamePattern": "*.mre"
}
],
"priority": "option"
}
]
},
"activationEvents": [],
"main": "./out/extension/main.cjs"
}