forked from innerlee/nvidia-smi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.53 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
109
110
111
112
113
114
115
116
117
{
"name": "nvidia-status-bar",
"displayName": "Nvidia Status Bar",
"description": "Elegantly display GPU utilisation and real memory consumption rate in vscode status bar.",
"icon": "icon.png",
"version": "2.0.0",
"publisher": "wjfu99",
"license": "MIT",
"repository": "https://github.com/wjfu99/nvidia-status-bar",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Nvidia-smi GPU status configuration",
"properties": {
"nvidia-smi.drawtype": {
"type": "string",
"default": "digit",
"description": "GPU indicator styles",
"enum": [
"circle",
"bar",
"recycle",
"die",
"clock",
"line",
"pile",
"digit",
"circledigit",
"negativecircledigit",
"wan",
"tiao",
"bing"
]
},
"nvidia-smi.gputype": {
"type": "string",
"default": "NVIDIA",
"description": "GPU types",
"enum": [
"NVIDIA",
"AMD"
]
}
}
},
"commands": [
{
"command": "extension.nvidia-smi",
"title": "Update nvidia-smi"
},
{
"command": "extension.stop_nvidia-smi",
"title": "Stop nvidia-smi"
},
{
"command": "extension.start_nvidia-smi",
"title": "Start nvidia-smi"
}
],
"icons": {
"nvidia-logo": {
"description": "nvidia logo",
"default": {
"fontPath": "icons/icomoon.woff",
"fontCharacter": "\\E900"
}
},
"amd-logo": {
"description": "amd logo",
"default": {
"fontPath": "icons/icomoon.woff",
"fontCharacter": "\\E903"
}
},
"gpu-memory": {
"description": "gpu memory",
"default": {
"fontPath": "icons/icomoon.woff",
"fontCharacter": "\\E901"
}
},
"gpu-usage": {
"description": "gpu usage",
"default": {
"fontPath": "icons/icomoon.woff",
"fontCharacter": "\\E902"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"child-process-promise": "^2.2.1"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^7.10.6",
"typescript": "^2.6.1",
"vscode": "^1.1.37"
}
}