-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "fds-vscode",
"displayName": "FDS",
"description": "Syntax highlighting for FDS input.",
"version": "0.0.4",
"publisher": "SmokeCloud",
"repository": {
"type": "git",
"url": "https://github.com/Smoke-Cloud/fds-code.git"
},
"bugs": {
"url": "https://github.com/Smoke-Cloud/fds-code/issues",
"email": "joshannessy@smokecloud.io"
},
"icon": "logo.png",
"homepage": "https://smokecloud.io",
"scripts": {
"package": "vsce package -o fds-vscode.vsix"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Linters"
],
"contributes": {
"languages": [
{
"id": "fds",
"aliases": [
"FDS",
"fds"
],
"extensions": [
".fds"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fds",
"scopeName": "source.fds",
"path": "./syntaxes/fds.tmLanguage.json"
}
]
}
}