-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "c64opcodes",
"displayName": "C64 Opcodes",
"description": "C64 Opcodes Helper",
"publisher": "willasm",
"author": {
"name": "William McKeever"
},
"license": "MIT - SEE LICENSE IN LICENSE.md",
"version": "1.0.0",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"keywords": [
"opcodes",
"mnemonics",
"c64",
"commodore",
"asm",
"assembly",
"programming",
"breadbin",
"6502",
"6510",
"MOS"
],
"bugs": {
"url": "https://github.com/willasm/c64opcodes/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/willasm/c64opcodes",
"repository": {
"type": "git",
"url": "https://github.com/willasm/c64opcodes.git"
},
"main": "src/extension.js",
"contributes": {
"commands": [{
"command": "c64opcodes.openOpcodesList",
"title": "Open C64 Opcodes List"
}],
"configuration": [{
"title": "C64 Opcodes",
"properties": {
"c64opcodes.useC64Font": {
"type": "boolean",
"default": false,
"description": "Display text using C64 Font"
},
"c64opcodes.useSidePanel": {
"type": "boolean",
"default": true,
"description": "View Opcode information in side panel"
}
}
}]
},
"scripts": {},
"devDependencies": {}
}