-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.84 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
{
"name": "serve-bar",
"productName": "Serve Bar",
"description": "Drag & Drop to share files/folders in your network",
"version": "1.2.0",
"author": "Pablo Varela <[email protected]>",
"bugs": {
"url": "https://github.com/pablopunk/serve-bar/issues",
"email": "[email protected]"
},
"contributors": [
"Pablo Varela <[email protected]>"
],
"dependencies": {
"node-notifier": "^8.0.1",
"portfinder": "^1.0.20",
"serve-handler": "^6.0.1"
},
"devDependencies": {
"electron": "^15.5.5",
"electron-builder": "^20.41.0",
"husky": "^2.3.0",
"png2icns": "0.0.1",
"prettier": "*",
"pretty-quick": "*",
"svgpng": "^4.0.1"
},
"homepage": "https://github.com/pablopunk/serve-bar",
"keywords": [
"serve-bar",
"serve",
"topbar",
"titlebar",
"barman",
"share",
"files",
"statusbar",
"bar",
"drag",
"drop",
"mac",
"electron"
],
"license": "MIT",
"main": "src/app.js",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "https://github.com/pablopunk/serve-bar"
},
"scripts": {
"start": "electron .",
"dist": "npm run png2icns && build",
"svg-to-png": "svgpng assets/icon.svg assets/icon.png -w 512 -h 512",
"png2icns": "npm run svg-to-png && png2icns assets/icon.png -s 16,32,63,128,256 -o assets/icon.icns"
},
"build": {
"appId": "com.pablopunk.serve-bar",
"files": [
"**/*",
"assets/*.png"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/icon.icns",
"target": [
"zip"
]
},
"asar": false
}
}