-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "z80-instruction-set",
"displayName": "Z80 Instruction Set",
"version": "1.2.4",
"publisher": "maziac",
"description": "Provides documentation of the Z80 instructions on hovering.",
"author": {
"name": "Thomas Busse"
},
"license": "MIT",
"keywords": [
"assembler",
"z80",
"instruction set",
"opcodes"
],
"repository": {
"type": "git",
"url": "https://github.com/maziac/z80-instruction-set"
},
"engines": {
"vscode": ">=1.71.0"
},
"icon": "assets/local/icon.png",
"categories": [
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Z80 Instruction Set Configuration",
"properties": {
"z80-instruction-set.enableHovering": {
"type": "boolean",
"default": true,
"description": "Enable/disable the display of instruction documentation on hovering."
},
"z80-instruction-set.z80Link": {
"type": "string",
"default": "https://zany80.github.io/documentation/Z80/UserManual.html",
"description": "Link to Z80 documentation. You can change this e.g. to point to your local Z80 manual pdf. Use an empty string \"\" to disable."
}
}
},
"commands": [
{
"command": "z80-instruction-set.show-all-instructions",
"title": "Show all Z80 instructions"
}
],
"languages": [
{
"id": "asm-collection",
"extensions": [
".list",
".lis",
".a80",
".asm",
".inc",
".s"
],
"aliases": [
"Assembler file"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"compile": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"package": "vsce package",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/vscode": "^1.71.0",
"esbuild": "^0.17.19",
"esbuild-jest-transform": "^2.0.0",
"jest": "^29.7.0",
"typescript": "^5.4.2"
}
}