-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"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 deploy",
"dev:worker": "npx wrangler dev",
"test": "node --experimental-strip-types --test test/**/*.test.ts",
"typecheck": "node ./node_modules/typescript/bin/tsc --noEmit",
"setup": "npx wrangler kv namespace create WEBHOOKS && echo '⚠️ Copy the namespace ID into wrangler.toml'"
},
"engines": {
"node": ">=20.0.0"
},
"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/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",
"wrangler": "^4.61.0"
}
}