forked from monapdx/keep-stickyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "keep-sticky-desktop",
"version": "0.1.0",
"private": true,
"description": "Desktop app that imports Google Keep Takeout and visualizes notes as draggable sticky notes",
"author": "Ash",
"license": "MIT",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"electron:dev": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
"build": "vite build",
"electron:build": "npm run build && electron-builder"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.0",
"cross-env": "^7.0.3",
"electron": "^30.0.0",
"electron-builder": "^24.13.3",
"vite": "^5.0.0",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.ash.keepstickyboard",
"productName": "Keep Sticky Board",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"electron/**",
"package.json"
],
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}