forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "dogehouse",
"version": "1.0.69",
"description": "Taking voice conversations to the moon 🚀",
"main": "./dist/electron.js",
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"dev": "yarn compile && node ./dist/dev.js",
"start": "yarn compile && electron ./dist/electron.js",
"gen:i18:keys": "ts-node --project scripts/tsconfig.json scripts/generateTranslationTypes.ts",
"sync:i18": "ts-node --project scripts/tsconfig.json scripts/syncTranslations.ts",
"i18": "npm run gen:i18:keys && npm run sync:i18",
"build:all": "yarn compile && electron-builder -mwl",
"build:mac": "yarn compile && electron-builder --mac",
"build:win": "yarn compile && electron-builder --win",
"build:linux": "yarn compile && electron-builder --linux",
"build:overlay": "cd resources/overlay && yarn build && cd ../../",
"build:globalkey": "yarn remove globalkey && yarn add globalkey && cd node_modules/globalkey && npx electron-build-env nj-cli build --release",
"delete:artifacts": "yarn delete:globalkey_artifacts && yarn delete:overlay_yarn_cache",
"delete:globalkey_artifacts": "cd node_modules/globalkey && del-cli target src && cd ../../",
"delete:overlay_yarn_cache": "cd resources/overlay && del-cli .yarn && cd ../../"
},
"keywords": [
"DogeHouse",
"Electron",
"voice-chat",
"Doge"
],
"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",
"build": {
"appId": "com.electron.dogehouse",
"productName": "DogeHouse",
"afterSign": "electron-builder-notarize",
"mac": {
"hardenedRuntime": true,
"icon": "icons/icon.png",
"category": "public.app-category.social-networking",
"entitlements": "settings/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Mic access for speech input in voice."
},
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "icons/icon.png",
"target": "nsis",
"publish": [
"github"
]
},
"linux": {
"icon": "icons/icon.png",
"target": [
"deb",
"AppImage",
"snap",
"tar.gz",
"rpm"
],
"category": "AudioVideo"
},
"snap": {
"confinement": "strict",
"plugs": [
"default",
"audio-playback",
"audio-record",
{
"browser-support": {
"interface": "browser-support",
"allow-sandbox": false
}
}
]
},
"extraMetadata": {
"main": "dist/electron.js"
},
"directories": {
"output": "./builds"
},
"extends": null
},
"devDependencies": {
"@types/discord-rpc": "^3.0.5",
"@types/i18next-node-fs-backend": "^2.1.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/prettier": "^2.2.3",
"builder-util": "^22.10.5",
"del-cli": "^3.0.1",
"electron": "^12.0.2",
"electron-build-env": "^0.2.0",
"electron-builder": "^22.10.5",
"electron-builder-notarize": "^1.2.0",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"discord-rpc": "^3.2.0",
"dotenv": "^8.2.0",
"electron-log": "^4.3.2",
"electron-overlay-window": "^1.0.4",
"electron-updater": "^4.3.8",
"globalkey": "^1.0.7",
"i18next": "^20.0.0",
"i18next-node-fs-backend": "^2.1.3"
},
"files": [
"./icons/**/*",
"./resources/**/*"
]
}