forked from andymule/qb64-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rrbasic",
"displayName": "Retro Rocket BASIC",
"description": "Retro Rocket Basic language support",
"version": "0.0.1",
"author": {
"name": "Brainbox.cc"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Debuggers",
"Formatters"
],
"scripts": {},
"dependencies": {
"diff": "^3.5.0",
"json-rpc2": "^1.0.2",
"vscode-debugadapter": "^1.32.1",
"vscode-debugprotocol": "^1.32.0",
"vscode-extension-telemetry": "^0.1.0",
"vscode-languageclient": "~5.2.1"
},
"devDependencies": {
"vscode": "^1.1.26"
},
"contributes": {
"languages": [
{
"id": "rrbasic",
"aliases": [
"retro-rocket-basic",
"basic"
],
"extensions": [
".rrbasic"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rrbasic",
"scopeName": "source.rrbasic",
"path": "./syntaxes/rrbasic.tmLanguage.json"
}
],
"snippets": [
{
"language": "rrbasic",
"path": "./snippets/snippets.json"
}
],
"configurationDefaults": {
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true
}
}
},
"debuggers": [
]
}