-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "syntax-script-vscode-ext",
"description": "Language support for Syntax Script.",
"author": "efekos",
"license": "MIT",
"version": "1.0.0",
"publisher": "efekos",
"categories": [
"Snippets",
"Programming Languages",
"Formatters"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:syx",
"onLanguage:sys",
"onStartupFinished"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {},
"commands": [
{
"command": "syntaxs.reload",
"title": "Reload Language Server",
"enablement": "true",
"category": "Syntax Script",
"shortTitle": "Reload Language Server",
"icon": "$(reload)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^20.16.11",
"typescript": "^5.6.3"
},
"dependencies": {
"@syntaxs/compiler": "file:../../syntaxScript/compiler/package/syntaxs-compiler-0.0.3-alpha.tgz"
}
}