-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 877 Bytes
/
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
{
"name": "Nix",
"description": "Nix language support for Visual Studio Code.",
"version": "1.0.1",
"publisher": "bbenoist",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": { "url": "https://github.com/bbenoist/vscode-nix/issues" },
"homepage": "https://github.com/bbenoist/vscode-nix/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bbenoist/vscode-nix.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [ "Languages" ],
"contributes": {
"languages": [{
"id": "nix",
"extensions": [ ".nix" ],
"configuration": "./nix.configuration.json"
}],
"grammars": [{
"language": "nix",
"scopeName": "source.nix",
"path": "./syntaxes/nix.tmLanguage"
}]
}
}