-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.19 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
{
"name": "setupmanagerhud",
"version": "1.0.0",
"description": "Real-time webhook dashboard for Setup Manager - deploy to Cloudflare Workers",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && npx wrangler d1 migrations apply DB --remote && npx wrangler deploy",
"deploy:prod": "npm run build && npx wrangler deploy -c wrangler.production.toml",
"dev:worker": "npx wrangler dev",
"typecheck": "tsc --noEmit",
"setup": "npx wrangler d1 create setupmanagerhud-events && echo 'Copy the database_id into wrangler.toml, then run: npx wrangler d1 migrations apply DB --remote'",
"test": "npm run build && vitest run",
"test:watch": "npm run build && vitest"
},
"engines": {
"node": ">=20.0.0"
},
"cloudflare": {
"bindings": {
"DB": {
"description": "D1 database used to store Setup Manager webhook events, dashboard history, stats, and filters."
},
"WEBHOOK_TOKEN": {
"description": "Required shared secret for Setup Manager webhook POSTs. Enter a long random value, save it securely, and configure the exact same value in Setup Manager. Do not leave blank."
}
}
},
"dependencies": {
"@fontsource-variable/figtree": "^5.2.10",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.7",
"@cloudflare/workers-types": "^4.20241127.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^25.2.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"tailwindcss": "^4.0.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.3.3",
"vite": "^6.0.0",
"vitest": "^4.1.4",
"wrangler": "^4.61.0"
}
}