-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 971 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 971 Bytes
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
{
"name": "vibe-dashboard",
"version": "0.1.0",
"description": "A frontend dashboard for displaying different metrics using bar charts",
"private": true,
"packageManager": "pnpm@10.22.0",
"type": "module",
"scripts": {
"ready": "vite fmt && vite run lint && vite test && vite run build",
"dev": "pnpm --filter dashboard dev",
"build": "vite run @vibe/dashboard#build",
"lint": "vite lint --type-aware",
"test": "vite test",
"fmt": "vite fmt",
"generate": "node tools/override-rolldown.mjs --stats"
},
"devDependencies": {
"@typescript-eslint/scope-manager": "^8.46.4",
"@voidzero-dev/vite-plus": "latest",
"dprint": "^0.50.2",
"playwright": "^1.56.1",
"top-github-dependents-by-stars": "^1.0.4",
"vitest": "^4.0.8"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"dprint",
"esbuild"
]
}
}