-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "vscode-smallbasic",
"displayName": "Small Basic",
"description": "Support for Microsoft's Small Basic in VS Code",
"version": "0.0.1",
"publisher": "alxnull",
"repository": {
"type": "git",
"url": "https://github.com/alxnull/vscode-smallbasic"
},
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [{
"id": "smallbasic",
"aliases": ["Small Basic", "smallbasic"],
"extensions": [".sb", ".smallbasic"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "smallbasic",
"scopeName": "source.smallbasic",
"path": "./syntaxes/smallbasic.tmLanguage.json"
}],
"snippets": [
{
"language": "smallbasic",
"path": "./snippets/smallbasic.snippets.json"
}
]
}
}