-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 1.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "qb64",
"displayName": "QB64",
"description": "QB64 - QBasic language support & compiler",
"version": "0.0.1",
"author": {
"name": "QB64 Community"
},
"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": "qbasic",
"aliases": [
"QB64",
"qbasic",
"basic"
],
"extensions": [
".bas",
".qb",
".qbasic"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "qbasic",
"scopeName": "source.qbasic",
"path": "./syntaxes/qbasic.tmLanguage.json"
}
],
"snippets": [
{
"language": "qbasic",
"path": "./snippets/snippets.json"
}
],
"configurationDefaults": {
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true
}
}
},
"debuggers": [
{
"type": "qb64",
"label": "qb64",
"enableBreakpointsFor": {
"languageIds": [
"qb64",
"qb",
"qbasic"
]
}
}
]
}