-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.64 KB
/
package.json
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
{
"name": "pin-sticky-notes",
"version": "1.0.3",
"description": "A simple sticky notes application",
"main": "src/main/index.js",
"author": "yeongpin",
"scripts": {
"dev": "electron .",
"electron:serve": "cross-env NODE_ENV=development concurrently \"vite\" \"wait-on tcp:2512 && electron .\" --kill-others",
"electron:dev": "cross-env NODE_ENV=development concurrently \"vite\" \"wait-on tcp:2512 && electron .\" --kill-others",
"build": "vite build && electron-builder",
"release": "node scripts/release.js",
"preview": "vite preview"
},
"build": {
"appId": "com.stickynotes.app",
"productName": "Sticky Notes",
"directories": {
"output": "dist"
},
"files": [
"src/main/**/*",
"src/preload/**/*",
"dist/renderer/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "src/assets/pin-note.png"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "src/assets/pin-note.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": false
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"icon": "src/assets/pin-note.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^10.0.0",
"electron-store": "^8.1.0",
"element-plus": "^2.4.0",
"vue": "^3.3.0",
"vue-i18n": "^9.8.0",
"vuedraggable": "^4.1.0",
"node-fetch": "^2.6.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.4.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^25.0.0",
"electron-builder": "^24.3.0",
"vite": "^4.5.0",
"wait-on": "^7.2.0"
}
}