-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 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
{
"name": "clash-config",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "pnpm run build && vite preview --host",
"deploy": "wrangler deploy --minify",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"pb-gen": "pbjs -t static-module -w es6 -o ./src/geo/geo.js ./src/geo/geo.proto",
"pb-gen-dts": "pbts -o ./src/geo/geo.d.ts ./src/geo/geo.js",
"cli": "tsx cli.ts",
"wrangler": "wrangler"
},
"dependencies": {
"@inquirer/prompts": "^7.8.6",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.16",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/yargs": "^17.0.33",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.9.9",
"js-yaml": "^4.1.0",
"lucide-react": "^0.548.0",
"monaco-editor": "^0.54.0",
"next-themes": "^0.4.6",
"protobufjs": "^7.5.4",
"qrcode.react": "^4.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^6.30.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"yargs": "^18.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.13.16",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.9.2",
"@types/qrcode.react": "^3.0.0",
"@vitejs/plugin-react": "^5.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"prettier": "^3.6.2",
"protobufjs-cli": "^1.1.3",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"wrangler": "^4.4.0"
}
}