-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 996 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
35
36
37
38
39
{
"name": "nyan",
"version": "0.0.2",
"publisher": "SFTtech",
"license": "LGPL3+",
"displayName": "nyan",
"description": "nyan language support for Visual Studio Code",
"repository": {
"type": "git",
"url": "https://github.com/SFTtech/nyan-vscode"
},
"bugs": {
"url": "https://github.com/SFTtech/nyan-vscode/issues"
},
"homepage": "https://github.com/SFTtech/nyan",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "nyan",
"extensions": [".nyan"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "nyan",
"scopeName": "source.nyan",
"path": "./syntaxes/nyan.json"
}]
}
}