-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 947 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": "vscode-squirrel-lang",
"displayName": "Squirrel Language Highlighting",
"description": "Squirrel Language Highlighting",
"version": "0.0.13",
"publisher": "monkeygroover",
"icon": "simple_nut.png",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Programming Languages"
],
"keywords" : [
"electric imp", "electricimp", "imp"
],
"contributes": {
"languages": [{
"id": "squirrel",
"aliases": ["Squirrel", "squirrel"],
"extensions": ["nut"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "squirrel",
"scopeName": "source.nut",
"path": "./syntaxes/Squirrel.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/monkeygroover/vscode-squirrel-lang.git"
}
}