-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
93 lines (93 loc) · 2.42 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
{
"name": "python-resource-monitor",
"displayName": "Python Resource Monitor",
"description": "A resource monitor for the Python Debugger",
"version": "0.3.0",
"publisher": "kaih2o",
"contributors": [
"2kai2kai2",
"mgrunbauer",
"nlaha"
],
"repository": "https://github.com/2kai2kai2/VSCode-Python-Resource-Monitor",
"icon": "images/icon.png",
"extensionDependencies": [
"vscode.python"
],
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Visualization",
"Debuggers",
"Other"
],
"keywords": [
"performance",
"resource",
"resources",
"monitor",
"counter",
"task manager",
"python",
"memory",
"memory counter",
"memory monitor",
"cpu",
"cpu counter",
"cpu monitor"
],
"galleryBanner": {
"theme": "dark",
"color": "#252526"
},
"activationEvents": [
"onDebug"
],
"main": "./out/extension.js",
"contributes": {
"views": {
"debug": [
{
"id": "python-resource-monitor.graphsView",
"name": "Python Resource Monitor",
"when": "debugType == 'debugpy' || debugType == 'python'",
"type": "webview"
}
]
},
"commands": [
{
"command": "python-resource-monitor.rsmInterval",
"title": "PyRSM: Polling Interval"
},
{
"command": "python-resource-monitor.rsmLength",
"title": "PyRSM: Length"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.4.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"node-ps-data": "^1.4.1"
}
}