-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.89 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": "robackup",
"private": true,
"version": "1.0.0",
"description": "Interface moderna para o utilitário Robocopy do Windows",
"author": "Robackup Team",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron": "electron .",
"electron:dev": "concurrently -k \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win",
"electron:build:portable": "npm run build && electron-builder --win portable",
"package": "npm run build && electron-packager . Robackup --platform=win32 --arch=x64 --out=release --overwrite --asar"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"electron": "^40.1.0",
"electron-builder": "^26.7.0",
"electron-packager": "^17.1.2",
"electron-squirrel-startup": "^1.0.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"lucide-react": "^0.563.0",
"vite": "^7.2.4",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.robackup.app",
"productName": "Robackup",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "public/icon.svg",
"signAndEditExecutable": false
},
"portable": {
"artifactName": "Robackup-${version}-Portable.exe"
}
}
}