-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.11 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
{
"name": "windropper",
"version": "0.1.0-beta.1",
"description": "A Windows alternative to macOS Dropover for temporary file stacking and management",
"main": "dist/main/main.js",
"scripts": {
"dev": "node dev.js",
"dev:main": "tsc -p tsconfig.main.json -w",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:3000 && cross-env NODE_ENV=development electron .",
"build": "node build.js",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"package": "electron-builder build --win",
"start": "cross-env NODE_ENV=production electron ."
},
"keywords": [
"electron",
"react",
"typescript",
"tailwindcss",
"file-management",
"drag-and-drop"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"colors": "^1.4.0",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"electron": "^26.2.2",
"electron-builder": "^24.6.4",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"wait-on": "^7.2.0"
},
"dependencies": {
"electron-store": "^8.1.0",
"framer-motion": "^10.16.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.1"
},
"build": {
"appId": "com.windropper.app",
"productName": "WinDropper",
"files": [
"dist/**/*",
"package.json"
],
"directories": {
"output": "release"
},
"win": {
"target": [
"nsis"
],
"icon": "public/icons/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}