-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.12 KB
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
{
"name": "cmon51-debugadapter",
"version": "1.0.0",
"description": "Debug Adapter Protocol implementation for CMON51",
"scripts": {
"build": "esbuild ./src/extension.ts --bundle --external:node-pty --external:vscode --format=cjs --platform=node --outfile=dist/extension.js",
"watch": "npm run -S build -- --sourcemap --sources-content=false --watch",
"package": "vsce package --target win32-x64",
"vscode:prepublish": "npm run -S build -- --minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./dist/extension.js",
"activationEvents": [
"onDebugResolve:CMON51"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ncarr/cmon51-debugadapter.git"
},
"author": "",
"license": "ISC",
"engines": {
"vscode": "^1.65.0"
},
"bugs": {
"url": "https://github.com/ncarr/cmon51-debugadapter/issues"
},
"homepage": "https://github.com/ncarr/cmon51-debugadapter#readme",
"dependencies": {
"node-pty": "^0.10.1"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/vscode": "^1.65.0",
"@vscode/debugadapter": "^1.54.0",
"esbuild": "^0.14.27",
"strip-ansi": "^7.0.1",
"typescript": "^4.6.2",
"vsce": "^2.7.0"
},
"contributes": {
"breakpoints": [
{
"language": "8051"
}
],
"debuggers": [
{
"type": "CMON51",
"languages": [
"8051"
],
"label": "CMON51",
"program": "./out/adapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"properties": {}
}
},
"initialConfigurations": [
{
"name": "Debug Assembly",
"type": "CMON51",
"request": "launch"
}
],
"configurationSnippets": [
{
"label": "CMON51 Debug: Launch",
"description": "Launch a debugging session on the CV-8052",
"body": {
"name": "Debug Assembly",
"type": "CMON51",
"request": "launch"
}
}
]
}
]
}
}