-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "aces-eb-language-support",
"version": "1.0.2",
"publisher": "ACES",
"engines": {
"vscode": "^1.62.0"
},
"displayName": "ACES EB Language Support",
"description": "This extension provides syntax highlighting of configuration files written for ACES Equipment Builder.",
"categories": [
"Programming Languages"
],
"license": "BSD-3-Clause",
"activationEvents": [
"onLanguage:acesebconfig"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "acesebconfig",
"aliases": [
"ACES EB Config",
"acesebconfig"
],
"extensions": [
".aceseb"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "acesebconfig",
"scopeName": "source.aceseb",
"path": "./syntaxes/acesebconfig.tmLanguage.json"
}
]
},
"bugs": {
"email": "[email protected]"
},
"repository": {
"type":"git",
"url":"https://github.com/automatic-controls/vscode-aces-equipment-builder.git"
},
"icon": "images/icon.png",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "1.x",
"@types/node": "16.x"
}
}