-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 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": "cloudsaver",
"version": "2.0.0",
"description": "CloudSaver v2 - Telegram Cloud Storage Desktop App",
"main": "out/main/index.js",
"author": "CloudSaver",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"build:win": "electron-vite build && electron-builder --win"
},
"dependencies": {
"big-integer": "^1.6.52",
"chokidar": "^5.0.0",
"date-fns": "^4.1.0",
"electron-updater": "^6.3.9",
"input": "^1.0.1",
"lucide-react": "^0.469.0",
"qrcode": "^1.5.4",
"react-router-dom": "^6.28.0",
"react-window": "^1.8.10",
"recharts": "^2.15.0",
"telegram": "^2.23.11"
},
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-tooltip": "^1.1.6",
"@types/node": "^22.13.0",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.3.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.3",
"vite": "^6.0.7"
},
"build": {
"appId": "com.cloudsaver.app",
"productName": "CloudSaver",
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis"
],
"icon": "resources/icon.ico"
},
"files": [
"out/**/*",
"resources/**/*"
],
"npmRebuild": false,
"nodeGypRebuild": false,
"buildDependenciesFromSource": false
}
}