-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cloudflared-tunnel-gui",
"version": "0.1.0",
"private": true,
"main": "src/main/main.js",
"author": "hidumou",
"description": "A GUI application for managing Cloudflare Tunnels",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"electron:dev": "concurrently \"cross-env NODE_ENV=development vite\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .\"",
"electron:build": "vite build && electron-builder",
"electron:start": "cross-env NODE_ENV=production electron ."
},
"build": {
"appId": "com.cloudflared.tunnel-gui",
"productName": "Cloudflared Tunnel GUI",
"directories": {
"output": "release"
},
"files": [
"src/main/**/*",
"dist/renderer/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icon.icns"
},
"win": {
"icon": "assets/icon.ico"
},
"linux": {
"icon": "assets/icon.png",
"category": "Development"
}
},
"dependencies": {
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@uiw/react-codemirror": "^4.25.4",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"i18next": "^25.7.3",
"js-yaml": "^4.1.1",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.69.0",
"react-i18next": "^16.5.0",
"react-router-dom": "^7.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"wait-on": "^9.0.3",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"@tailwindcss/postcss": "^4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite": "^7.3.0"
}
}