-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "peerdrop",
"version": "1.0.0",
"description": "An airdrop clone",
"main": "index.js",
"dependencies": {
"clone": "2.1.1",
"drag-drop": "^2.13.2",
"extract-zip": "=1.6.0",
"husky": "^0.13.3",
"nodemon": "^1.11.0",
"progress-stream": "2.0.0",
"progressbar.js": "1.0.1",
"stream-body": "^1.0.5",
"uuid": "3.0.1"
},
"devDependencies": {
"electron": "^1.6.6",
"electron-builder": "^17.1.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/.bin/nodemon --ext js,html --ignore node_modules/ ./node_modules/.bin/electron ./index.js",
"postcheckout": "bin/postcheckout",
"build-linux": "build --linux zip deb",
"build-mac": "build --mac"
},
"build": {
"appId": "peerdrop.offlinefirst",
"mac": {
"icon": "./icons/logo.icns",
"category": "public.app-category.utility"
},
"linux": {
"icon": "./icons/"
}
},
"author": "Offline Camp <[email protected]>",
"license": "ISC"
}