forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.47 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
{
"name": "baklava",
"version": "1.0.0",
"description": "",
"main": "./dist/electron.js",
"scripts": {
"dev": "electron ./dist/electron.js",
"compile": "tsc",
"watch": "tsc -w",
"build": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --all --icon=./icons/icon.png --out=./builds/",
"build:mac:arm64": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --icon=./icons/icon.png --platform=darwin --arch=arm64 --overwrite --out=./builds/",
"build:mac:x64": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --icon=./icons/icon.png --platform=darwin --arch=x64 --overwrite --out=./builds/",
"build:win64": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --icon=./icons/icon.png --platform=win32 --arch=x86_64 --overwrite --out=./builds/",
"build:linux:x64": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --icon=./icons/icon.png --platform=linux --arch=x64 --overwrite --out=./builds/",
"build:linux:arm64": "tsc ./src/electron.ts --outDir ./dist && npx electron-packager . DogeHouse --icon=./icons/icon.png --platform=linux --arch=arm64 --overwrite --out=./builds/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.31",
"electron": "^11.2.3",
"electron-packager": "^15.2.0",
"typescript": "^4.2.2"
},
"build": {
"appId": "com.electron.dogehouse",
"asar": true,
"mac": {
"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": "nsis"
},
"linux": {
"icon": "icons/icon.png",
"target": [
"deb"
]
}
},
"dependencies": {
"iohook": "^0.7.2"
},
"iohook": {
"targets": [
"node-83",
"electron-85"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
}
}