-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
189 lines (189 loc) · 4.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "amiga-blitzbasic2",
"displayName": "Amiga Blitz Basic 2",
"description": "Language Support for Amiga Blitz Basic 2 and Amiblitz",
"publisher": "MickGyver",
"repository": {
"type": "git",
"url": "https://github.com/MickGyver/vscode-amiga-blitzbasic.git"
},
"icon": "resources/images/bb2.png",
"version": "0.9.1",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:abb2",
"onCommand:amiga-blitzbasic2.runuae",
"onCommand:amiga-blitzbasic2.openalluae",
"onCommand:amiga-blitzbasic2.runalluae"
],
"main": "./out/extension.js",
"contributes": {
"capabilities": {
"hoverProvider": "true",
"documentSymbolProvider": "true"
},
"configuration": {
"title": "Amiga Blitz Basic 2",
"properties": {
"AmigaBlitzBasic2.sharedFolder": {
"type": "string",
"default": "SharedCode",
"description": "Virtual harddrive volume name in UAE (if not present the `:` wil be added automatically). It the sharing point of your code between VSCode and UAE. The shared harddrive path configured in WinUAE or FS-UAE should match to your workspace path."
},
"AmigaBlitzBasic2.UAEPort": {
"type": "number",
"default": 1234,
"description": "UAE serial direct connection port for AUX: mount."
},
"AmigaBlitzBasic2.ISOCD": {
"type": "string",
"description": "Filepath for the ISOCD from the cd32 developerkit."
},
"AmigaBlitzBasic2.CDTVTM": {
"type": "string",
"description": "Filepath for the CDTV.TM from the cdtv or cd32 developerkit."
},
"AmigaBlitzBasic2.CD32TM": {
"type": "string",
"description": "Filepath for the CD32.TM from the cd32 developerkit."
},
"AmigaBlitzBasic2.RMTM": {
"type": "string",
"description": "Filepath for the RMTM from the cdtv or cd32 developerkit."
}
}
},
"commands": [
{
"command": "amiga-blitzbasic2.runuae",
"title": "BB2: Run current file in UAE"
},
{
"command": "amiga-blitzbasic2.openalluae",
"title": "BB2: Open all files in UAE"
},
{
"command": "amiga-blitzbasic2.runalluae",
"title": "BB2: Open all files and run current in UAE"
},
{
"command": "amiga-blitzbasic2.buildADF",
"title": "BB2: build an bootable adf from executable and assets"
},
{
"command": "amiga-blitzbasic2.buildISO",
"title": "BB2: build an bootable ISO for CDTV and/or CD32 from executable and assets"
},
{
"command": "amiga-blitzbasic2.buildZIP",
"title": "BB2: build an ZIP file of your game for HD install."
}
],
"languages": [
{
"id": "abb2",
"aliases": [
"Amiga Blitz Basic 2",
"abb2"
],
"extensions": [
".bb",
".bb2",
".bba"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "abb2",
"scopeName": "source.abb2",
"path": "./syntaxes/abb2.tmLanguage.json"
}
],
"snippets": [
{
"language": "abb2",
"path": "./snippets/extras.code-snippets"
},
{
"language": "abb2",
"path": "./snippets/functions.code-snippets"
},
{
"language": "abb2",
"path": "./snippets/program_flow.code-snippets"
}
],
"keybindings": [
{
"command": "amiga-blitzbasic2.runuae",
"key": "ctrl+f6",
"mac": "cmd+f6",
"when": "editorTextFocus"
},
{
"command": "amiga-blitzbasic2.openalluae",
"key": "ctrl+f7",
"mac": "cmd+f7",
"when": "editorTextFocus"
},
{
"command": "amiga-blitzbasic2.runalluae",
"key": "ctrl+f8",
"mac": "cmd+f8",
"when": "editorTextFocus"
},
{
"command": "amiga-blitzbasic2.buildADF",
"key": "ctrl+f4",
"mac": "cmd+f4",
"when": "editorTextFocus"
},
{
"command": "amiga-blitzbasic2.buildISO",
"key": "ctrl+f3",
"mac": "cmd+f3",
"when": "editorTextFocus"
},
{
"command": "amiga-blitzbasic2.buildZIP",
"key": "ctrl+f2",
"mac": "cmd+f2",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^10.0.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"@types/xml2js": "^0.4.11",
"natural-compare-lite": "^1.4.0",
"xml2js": "^0.4.23",
"zip-a-folder": "^1.1.5"
}
}