forked from mcu-debug/rtos-views
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.6 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.6 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
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
{
"name": "rtos-views",
"displayName": "RTOS Views",
"description": "RTOS views for microcontrollers",
"version": "0.0.13",
"publisher": "mcu-debug",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/mcu-debug/rtos-views"
},
"bugs": {
"url": "https://github.com/mcu-debug/rtos-views/issues"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"keywords": [
"cortex-debug",
"cppdbg",
"embedded",
"rtos",
"cortex",
"rtx5"
],
"activationEvents": [
"onDebugResolve:cortex-debug",
"onDebugResolve:cppdbg",
"onDebugResolve:cspy",
"onDebugResolve:gdbtarget",
"onDebugResolve:stlinkgdbtarget",
"onDebugResolve:jlinkgdbtarget"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"category": "RTOS Views",
"command": "mcu-debug.rtos-views.helloWorld",
"title": "Hello World Test"
},
{
"category": "RTOS Views",
"command": "mcu-debug.rtos-views.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"category": "RTOS Views",
"command": "mcu-debug.rtos-views.toggleRTOSPanel",
"title": "Toggle RTOS Panel"
}
],
"configuration": {
"type": "object",
"title": "rtos-views",
"properties": {
"mcu-debug.rtos-views.showRTOS": {
"type": "boolean",
"default": true,
"description": "Enable/Disable RTOS tracking"
},
"mcu-debug.rtos-views.disableStackPeaks": {
"type": "boolean",
"default": false,
"description": "Determining stack peaks requires that stack memory be read to determine a high water mark. Stack peaks are useful but can be expensive in runtime."
},
"mcu-debug.rtos-views.trackDebuggers": {
"type": "array",
"items": "string",
"default": [],
"description": "List (array) of additional debuggers to track besides the default ones. Reload of window required"
}
}
},
"viewsContainers": {
"panel": [
{
"id": "rtos-views",
"title": "xRTOS",
"icon": "images/unknown.svg"
}
]
},
"views": {
"rtos-views": [
{
"id": "rtos-views.rtos",
"type": "webview",
"name": "xRTOS",
"when": "mcu-debug.rtos-views:showRTOS"
}
]
},
"menus": {
"view/title": [
{
"command": "mcu-debug.rtos-views.refresh",
"when": "view == rtos-views.rtos",
"group": "navigation@99"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -noEmit && node .esbuild.config.js --analyze",
"packagex": "node ./node_modules/@vscode/vsce/vsce package",
"lint": "eslint src --ext ts",
"watch": "node .esbuild.config.js --watch --analyze",
"test": "node ./src/test/runTest.js",
"package": "node ./release.js --package",
"publish": "node ./release.js --publish --vsx-also"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vscode/test-electron": "^2.1.5",
"esbuild": "^0.14.54",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@vscode/debugprotocol": "^1.59.0",
"@vscode/vsce": "^2.18.0",
"@vscode/webview-ui-toolkit": "^1.1.0",
"debug-tracker-vscode": "^0.0.15"
},
"extensionDependencies": [
"mcu-debug.debug-tracker-vscode"
]
}