-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "system-monitor",
"version": "0.2.0",
"private": true,
"description": "Lightweight macOS system monitor with process manager and privacy scanner — built with Next.js and shadcn/ui",
"license": "MIT",
"author": "Rajan",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "next build",
"start": "next start --hostname 127.0.0.1",
"lint": "eslint --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun run lint && bun run test && bun run build && bun run smoke",
"smoke": "node scripts/smoke.mjs",
"qa": "node scripts/qa-gate.mjs"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^16.2.12",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/bun": "^1.3.14",
"@types/node": "^20.19.43",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3"
},
"overrides": {
"postcss": "^8.5.24",
"sharp": "^0.35.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}