-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
{
"name": "logicscript-lang",
"displayName": "LogicScript Language Support",
"description": "",
"author": {
"name": "pipe01"
},
"publisher": "pipe01",
"version": "0.1.6",
"engines": {
"vscode": "^1.61.0"
},
"scripts": {
"watch": "node .scripts/build.js --watch",
"package": "node .scripts/package.js",
"publish": "node .scripts/publish.js",
"test-compile": "tsc -p ./"
},
"repository": "github:pipe01/LogicScript",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "logicscript",
"aliases": [
"LogicScript",
"logicscript"
],
"extensions": [
".lsx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "logicscript",
"scopeName": "source.lsx",
"path": "./syntaxes/logicscript.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:logicscript"
],
"dependencies": {
"@types/node": "^16.11.6",
"vscode-languageclient": "^7.0.0"
},
"main": "./out/main",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/vscode": "^1.61.0",
"esbuild": "^0.13.12",
"minimist": "^1.2.6",
"rimraf": "^3.0.2",
"vsce": "^1.102.0"
}
}