-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
81
{
"name": "statetree-language",
"description": "Please enter a brief description here",
"version": "0.0.1",
"files": [
"bin"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json --watch",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch",
"vscode:prepublish": "npm run build && npm run lint",
"build:worker": "esbuild --minify ./src/language/statetree-worker-main.js --bundle --format=iife --outfile=./out/language/statetree-server-worker.js",
"old:prepare:public": "shx mkdir -p ./public && shx cp -fr ./src/static/* ./public/",
"build:deps": "npm run langium:generate && npm run build && npm run build:worker && npm run build:monarch",
"build:monarch": "tsc -b tsconfig.monarch.json",
"old:serve": "node ./out/web/app.js"
},
"dependencies": {
"@types/react": "^18.2.11",
"chalk": "~4.1.2",
"commander": "~10.0.0",
"express": "~4.18.2",
"langium": "~1.2.0",
"vscode-languageclient": "~8.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "~16.18.11",
"@types/vscode": "~1.67.0",
"@typescript-eslint/eslint-plugin": "~5.51.0",
"@typescript-eslint/parser": "~5.51.0",
"esbuild": "^0.16.14",
"eslint": "~8.33.0",
"langium-cli": "~1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"typescript": "~4.9.5",
"vscode-uri": "^3.0.7"
},
"displayName": "statetree-language",
"engines": {
"vscode": "^1.67.0",
"node": ">=14.0.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "statetree",
"aliases": [
"Statetree",
"statetree"
],
"extensions": [
".statetree"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "statetree",
"scopeName": "source.statetree",
"path": "./syntaxes/statetree.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:statetree"
],
"main": "./out/extension/main.js",
"bin": {
"statetree-cli": "./bin/cli"
}
}