-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·121 lines (121 loc) · 3.29 KB
/
package.json
File metadata and controls
executable file
·121 lines (121 loc) · 3.29 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "veeshield",
"version": "2.0.0",
"description": "AI-Powered Security Suite with Universal VPN for Windows 11 — voice assistant 'Hey Vee', real-time protection, WireGuard/OpenVPN/IKEv2",
"author": "Waleed Mandour",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waleedmandour/veeshield.git"
},
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "next build && electron-builder --win --x64"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-query": "^5.60.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.0",
"lucide-react": "^0.460.0",
"next": "16.2.1",
"next-themes": "^0.4.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.53.0",
"recharts": "^2.13.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.0",
"zod": "^3.23.0",
"zustand": "^5.0.0",
"electron-updater": "^6.3.9",
"electron-log": "^5.2.4"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"electron": "41.1.0",
"electron-builder": "26.8.1",
"eslint": "^9.14.0",
"eslint-config-next": "16.2.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "5.9.3",
"wait-on": "^8.0.0"
},
"build": {
"appId": "com.veeshield.app",
"productName": "VeeShield",
"copyright": "Copyright © 2024 Waleed Mandour",
"directories": {
"output": "dist"
},
"files": [
"electron/**/*",
"out/**/*",
"public/**/*",
"node_modules/**/*",
"package.json"
],
"extraFiles": [
{
"from": "LICENSE",
"to": "LICENSE"
}
],
"publish": {
"provider": "github",
"owner": "waleedmandour",
"repo": "veeshield"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "public/icon.ico",
"verifyUpdateCodeSignature": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "VeeShield",
"uninstallDisplayName": "VeeShield",
"deleteAppDataOnUninstall": false
}
}
}