This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
forked from MickGyver/vscode-amiga-blitzbasic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 3.61 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
{
"name": "amiga-blitzbasic2",
"displayName": "Amiga Blitz Basic 2",
"description": "Language Support for Amiga Blitz Basic 2 and Amiblitz, with native javascript improvements by youenchene.",
"publisher" : "MickGyver",
"repository": {
"type": "git",
"url": "https://github.com/MickGyver/vscode-amiga-blitzbasic.git"
},
"icon": "resources/images/bb2.png",
"version": "0.6.0",
"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."
}
}
},
"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"
}
],
"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"
}
]
},
"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",
"xml2js": "^0.4.23"
}
}