-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.54 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.54 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
{
"name": "resource-monitor",
"displayName": "Resource Monitor",
"description": "A simple resource monitor.",
"version": "2.0.20",
"publisher": "chneau",
"license": "MIT",
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
},
"keywords": [
"performance",
"resource",
"resources",
"monitor",
"memory",
"cpu",
"io",
"network",
"disk",
"storage"
],
"repository": {
"type": "git",
"url": "https://github.com/chneau/vscode-resource-monitor"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/main.js",
"scripts": {
"build": "esbuild ./src/main.ts --outfile=out/main.js --bundle --external:vscode --platform=node --minify",
"watch": "bun run build --watch",
"upgrade": "bun update --latest; bun install --dev @types/vscode@1.99.0",
"check": "bun run --sequential check:deno check:oxlint check:biome lint",
"lint": "tsc --noEmit",
"bench": "hyperfine 'bun run benchmarks/multipleCalls.ts' 'bun run benchmarks/oneCall.ts'",
"publish": "bun run build && vsce publish; ovsx publish",
"all": "bun run --sequential upgrade check:deno check:oxlint check:biome lint",
"check:deno": "deno fmt --use-tabs --quiet",
"check:oxlint": "oxlint --fix-dangerously --quiet",
"check:biome": "timeout 3s biome check --write --unsafe ."
},
"dependencies": {
"pretty-bytes": "^7.1.0",
"systeminformation": "^5.31.1"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/vscode": "1.99.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"typescript": "^5.9.3"
},
"contributes": {
"configuration": {
"title": "Resource Monitor",
"properties": {
"resource-monitor.cpu": {
"type": "number",
"default": 1,
"description": "Order of the CPU usage. 0 to hide."
},
"resource-monitor.memory": {
"type": "number",
"default": 2,
"description": "Order of the memory usage. 0 to hide."
},
"resource-monitor.network": {
"type": "number",
"default": 3,
"description": "Order of the network usage. 0 to hide."
},
"resource-monitor.file-system": {
"type": "number",
"default": 4,
"description": "Order of the file system usage. 0 to hide."
},
"resource-monitor.gpu": {
"type": "number",
"default": 0,
"description": "Order of the GPU usage. 0 to hide."
},
"resource-monitor.refresh-interval": {
"type": "number",
"default": 3000,
"description": "Refresh interval in milliseconds."
}
}
}
}
}