forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.26 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dogehouse",
"version": "1.0.16",
"description": "Taking voice conversations to the moon 🚀",
"main": "./dist/electron.js",
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"dev": "npm run compile && node ./dist/dev.js",
"start": "npm run compile && electron ./dist/electron.js",
"build": "npm run compile && electron-builder",
"build:all": "npm run compile && electron-builder -mwl",
"build:mac": "npm run compile && electron-builder --mac",
"build:win": "npm run compile && electron-builder --win",
"build:linux": "npm run compile && electron-builder --linux"
},
"keywords": [
"DogeHouse",
"Electron"
],
"author": "Ben Awad <[email protected]>",
"homepage": "https://github.com/benawad/dogehouse/",
"repository": {
"type": "git",
"url": "https://github.com/benawad/dogehouse"
},
"bugs": {
"url": "https://github.com/benawad/dogehouse/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.31",
"electron": "^11.3.0",
"electron-builder": "^22.10.5",
"electron-builder-notarize": "^1.2.0",
"typescript": "^4.2.2"
},
"build": {
"afterSign": "electron-builder-notarize",
"appId": "com.electron.dogehouse",
"productName": "DogeHouse",
"asar": true,
"mac": {
"hardenedRuntime": true,
"icon": "icons/icon.png",
"category": "public.app-category.social-networking",
"entitlements": "settings/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Mic access for speeach input in voice."
},
"target": [
"dmg"
]
},
"win": {
"icon": "icons/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "icons/icon.png",
"target": [
"deb"
]
},
"directories": {
"output": "./builds"
}
},
"dependencies": {
"electron-updater": "^4.3.8",
"iohook": "^0.7.2"
},
"iohook": {
"targets": [
"node-83",
"electron-85"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
},
"files": [
"./icons/**/*"
]
}