-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "Dropifier",
"version": "1.0.3",
"description": "Dropifier",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"deploy": "electron-builder build --mac --publish always"
},
"repository": {
"type": "git",
"url": "https://github.com/kemuri/Dropifier.git"
},
"keywords": [
"Electron",
"Dropbox"
],
"author": "Dot",
"license": "CC0-1.0",
"devDependencies": {
"electron": "7.1.2",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.2.1"
},
"build": {
"appId": "com.dot.dropifier",
"afterSign": "app/notarize.js",
"mac": {
"category": "menubar.app",
"icon": "app/resources/icon.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "app/entitlements.mac.plist",
"entitlementsInherit": "app/entitlements.mac.plist",
"publish": {
"provider": "github"
}
},
"protocols": [
{
"name": "Dropifier",
"role": "Viewer",
"schemes": [
"Dropifier"
]
}
]
},
"dependencies": {
"dotenv": "^8.2.0",
"electron-store": "^5.1.0",
"electron-updater": "^4.2.0",
"update-electron-app": "^1.5.0"
}
}