-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.83 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
{
"name": "websocket-adapter",
"displayName": "WebSocket Debug Adapter",
"description": "Debugger for Arm Cortex-M based microcontrollers, development boards and debug probes, implementing the Microsoft Debug Adapter Protocol (DAP)",
"version": "0.0.5",
"publisher": "eclipse-cdt",
"author": "Rob Moran <[email protected]>",
"license": "EPL-2.0",
"main": "dist/extension.js",
"browser": "dist/web-extension.js",
"repository": "https://github.com/eclipse-cdt-cloud/vscode-websocket-adapter",
"qna": "https://github.com/eclipse-cdt-cloud/vscode-websocket-adapter/issues",
"icon": "media/cdtcloud.png",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Debuggers"
],
"keywords": [
"socket",
"websocket",
"debug"
],
"scripts": {
"prepare": "yarn build",
"clean": "git clean -f -x ./node_modules ./dist",
"build": "webpack --mode production && yarn lint",
"watch": "webpack -w",
"lint": "eslint . --ext .ts,.tsx",
"package": "vsce package --yarn",
"serve": "serve --cors -p 4444"
},
"dependencies": {
"buffer": "^6.0.3",
"process": "^0.11.10",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/debugadapter": "^1.68.0",
"@vscode/debugprotocol": "^1.66.0",
"@vscode/vsce": "^3.1.1",
"eslint": "^8.57.1",
"serve": "^14.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"contributes": {
"breakpoints": [
{
"language": "c"
},
{
"language": "cpp"
}
],
"debuggers": [
{
"type": "websocket-debug",
"label": "WebSocket Debugger",
"languages": [
"c",
"cpp"
],
"configurationAttributes": {
"attach": {
"properties": {
"address": {
"type": "string",
"description": "WebSocket (ws://<host>:<port>) or socket (<host>:<port>) to connect to"
},
"pathMapping": {
"type": "object",
"description": "A mapping of remote paths to local paths to resolve source files"
}
}
}
}
}
],
"configuration": {
"title": "WebSocket Debug",
"properties": {
"websocket-debug.loggingVerbosity": {
"type": "string",
"enum": [
"off",
"error",
"warn",
"info",
"debug"
],
"default": "warn",
"description": "Specify the logging verbosity of the debug extension"
}
}
}
},
"activationEvents": [
"onDebug"
]
}