-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "handable",
"version": "0.3.1",
"description": "handable is an application that draws only the user's hand on the entire desktop screen. During a presentation, the user can use his or her hands to communicate various gestures.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-builder --mac",
"build-win": "electron-builder --win",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Tetsuaki BABA",
"license": "ISC",
"devDependencies": {
"electron": "^14.2.1",
"electron-builder": "^22.14.5"
},
"build": {
"appId": "net.tetsuakibaba.app.handable",
"productName": "handable",
"afterSign": "./scripts/notarize.js",
"copyright": "Copyright © 2021 Tetsuaki Baba",
"dmg": {
"sign": false
},
"mac": {
"target": {
"target": "dmg",
"arch": "universal"
},
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"icon": "./images/icon.icns"
},
"win": {
"target": {
"target": "nsis",
"arch": "x64"
},
"icon": "./images/icon.ico"
}
},
"dependencies": {
"@nut-tree/nut-js": "^1.7.1-next.20211116233225",
"dotenv": "^10.0.0",
"electron-browser-storage": "^1.0.7",
"electron-notarize": "^1.1.1"
}
}