-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.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
{
"name": "machud",
"version": "0.0.4",
"description": "A zero-config system monitor for the macOS terminal — one curated, opinionated dashboard you don't configure (a TUI reimagining of Stats).",
"keywords": [
"btop",
"dashboard",
"macos",
"stats",
"system-monitor",
"terminal",
"tui"
],
"homepage": "https://github.com/hyf0/machud#readme",
"bugs": {
"url": "https://github.com/hyf0/machud/issues"
},
"license": "MIT",
"author": "Yunfei He <i.heyunfei@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/hyf0/machud.git"
},
"bin": {
"machud": "dist/main.mjs"
},
"files": [
"dist/main.mjs",
"DESIGN.md",
"THIRD_PARTY_NOTICES.md"
],
"type": "module",
"scripts": {
"dev": "vite",
"check:type": "vue-tsc --build",
"type-check": "pnpm run check:type",
"build": "tsdown && node scripts/generate-third-party-notices.mjs",
"start": "node dist/main.mjs",
"preview": "pnpm run build && node dist/main.mjs",
"verify": "node scripts/verify.mjs",
"test": "vitest run",
"prepack": "pnpm run build"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.18.0",
"@vue-tui/runtime": "0.3.0",
"@vue-tui/testing": "0.3.0",
"@vue-tui/vite": "0.3.0",
"@vue/tsconfig": "^0.9.1",
"chalk": "^5.3.0",
"tsdown": "^0.22.3",
"typescript": "~6.0.0",
"unplugin-vue": "7.2.0",
"vite": "8.1.0",
"vitest": "4.1.10",
"vue": "^3.5.0",
"vue-tsc": "3.3.4"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@11.8.0"
}