-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.9 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
{
"name": "@talhaorak/mac-dash",
"version": "1.0.9",
"description": "Beautiful macOS system dashboard — monitor services, processes, resources and logs in real-time",
"type": "module",
"bin": {
"macdash": "./bin/macdash.mjs"
},
"main": "server/index.ts",
"files": [
"bin/",
"server/",
"client/src/",
"client/package.json",
"client/tsconfig.json",
"client/vite.config.ts",
"plugins/",
"scripts/",
"dist/",
"package.json",
"tsconfig.json",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "concurrently -n server,client -c cyan,magenta \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "bun --watch server/index.ts",
"dev:client": "cd client && bunx --bun vite --port 5173",
"build": "cd client && bun install && bunx --bun vite build",
"start": "NODE_ENV=production bun server/index.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"desktop:dev": "cd packages/desktop && cargo tauri dev",
"desktop:build": "bun run build && cd packages/desktop && cargo tauri build"
},
"keywords": [
"macos",
"dashboard",
"system-monitor",
"launchctl",
"process-manager",
"services",
"bun",
"hono",
"react",
"cli",
"devtools",
"admin",
"monitoring"
],
"author": {
"name": "Talha Orak",
"email": "talhaorak.git@gmail.com",
"url": "https://github.com/talhaorak"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/talhaorak/mac-dash.git"
},
"bugs": {
"url": "https://github.com/talhaorak/mac-dash/issues"
},
"homepage": "https://talhaorak.github.io/mac-dash",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin"
],
"dependencies": {
"hono": "^4.7.0"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"concurrently": "^9.1.0",
"typescript": "^5.7.0"
}
}