-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
224 lines (223 loc) · 6 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
"name": "vscode-octo",
"displayName": "Octo Language Support",
"description": "vscode support for the Octo language",
"version": "0.3.0",
"publisher": "hoovercj",
"engines": {
"vscode": "^1.5.0"
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/hoovercj/vscode-octo.git"
},
"bugs": {
"url": "https://github.com/hoovercj/vscode-octo/issues"
},
"homepage": "https://github.com/hoovercj/vscode-octo",
"license": "MIT",
"categories": [
"Languages",
"Other",
"Debuggers"
],
"activationEvents": [
"onLanguage:octo"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "octo.showTools",
"title": "Octo: Show tools"
},
{
"command": "octo.showToolsToSide",
"title": "Octo: Show tools to the side"
},
{
"command": "octo.showSource",
"title": "Octo: Show source"
},
{
"command": "octo.openExample",
"title": "Octo: Open an example"
},
{
"command": "octo.openDocs",
"title": "Octo: Open docs"
},
{
"command": "octo.decompile",
"title": "Octo: Decompile"
}
],
"languages": [
{
"id": "octo",
"aliases": [
"Octo",
"octo"
],
"extensions": [
".8o"
]
}
],
"grammars": [
{
"language": "octo",
"scopeName": "source.octo",
"path": "./syntaxes/octo.tmLanguage"
}
],
"configuration": {
"type": "object",
"title": "Settings for Octo projects",
"properties": {
"octo.shiftQuirks": {
"type": "boolean",
"default": false,
"description": "<<= and >>= modify vx in place and ignore vy."
},
"octo.loadStoreQuirks": {
"type": "boolean",
"default": false,
"description": "load and store operations leave i unchanged."
},
"octo.vfOrderQuirks": {
"type": "boolean",
"default": false,
"description": "arithmetic results write to vf after status flag."
},
"octo.clipQuirks": {
"type": "boolean",
"default": false,
"description": "clip sprites at screen edges instead of wrapping."
},
"octo.jumpQuirks": {
"type": "boolean",
"default": false,
"description": "4 high bits of target address determines the offset register of jump0 instead of v0."
},
"octo.enableXO": {
"type": "boolean",
"default": false,
"description": "enable XO-Chip extended instruction set."
},
"octo.color.theme": {
"type": "string",
"default": "OctoClassic",
"description": "A color scheme for the emulator, pixel canvas, etc. Choose an existing theme, or choose 'Custom' and build your own.",
"enum": [
"OctoClassic",
"HotDogStand",
"PeaSoupLcd",
"Grayscale",
"CGA0",
"CGA1",
"Custom"
]
},
"octo.color.backgroundColor": {
"type": "string",
"default": "#996600",
"description": "The hex value for the background color."
},
"octo.color.fillColor": {
"type": "string",
"default": "#FFCC00",
"description": "The hex value for the foreground color."
},
"octo.color.fillColor2": {
"type": "string",
"default": "#FF6600",
"description": "The hex value for the second foreground color. (XO-Chip)"
},
"octo.color.blendColor": {
"type": "string",
"default": "#662200",
"description": "The hex value for the blended color. (XO-Chip)"
},
"octo.color.buzzColor": {
"type": "string",
"default": "#FFAA00",
"description": "The hex value for the buzzer color."
},
"octo.color.quietColor": {
"type": "string",
"default": "#000000",
"description": "The hex value for the silence color."
},
"octo.tickrate": {
"type": "integer",
"default": 20,
"description": "The number of emulator cycles per rendering frame.",
"enum": [
7,
15,
20,
30,
100,
200,
500,
1000
]
},
"octo.screenRotation": {
"type": "integer",
"default": 0,
"description": "The degrees clockwise the screen should be rotated.",
"enum": [
0,
90,
180,
270,
360
]
},
"octo.numericFormat": {
"type": "string",
"default": "hex",
"description": "The numeric format to use when decompiling.",
"enum": [
"hex",
"dec",
"bin"
]
},
"octo.numericMask": {
"type": "boolean",
"default": false,
"description": "Format the numeric operand of Random n as binary."
},
"octo.languageService": {
"type": "string",
"default": "enabled",
"enum": [
"enabled",
"diagnosticsOff",
"disabled"
],
"description": "Enable or disable language service features such as go to symbol and syntax error diagnostics. Diagnostics are experimental and can be disabled with \"diagnosticsOff\""
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32",
"@types/es6-promise": "0.0.32"
},
"dependencies": {
}
}