-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 733 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 733 Bytes
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
{
"name": "drop",
"version": "1.2.3",
"description": "",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/Cesque/drop"
},
"scripts": {
"start": "npx electron main",
"build": "npx electron-builder",
"deploy": "npx electron-builder --publish always"
},
"author": "",
"license": "ISC",
"dependencies": {
"auto-launch": "^5.0.5",
"electron-updater": "^4.1.2",
"internal-ip": "^4.3.0",
"menubar": "^6.0.6",
"micro": "^9.3.5-canary.2"
},
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "^21.2.0"
},
"build": {
"appId": "drop",
"icon": "app-icon.png",
"files": [
"**/*",
"build/*.*"
]
}
}