-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.46 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
{
"name": "g-assist",
"productName": "Google Assistant",
"description": "Google Assistant Unofficial Desktop Client",
"version": "1.0.0-rc.2",
"private": true,
"author": "Melvin Abraham <[email protected]>",
"homepage": "https://github.com/Melvin-Abraham",
"repository": {
"url": "https://github.com/Melvin-Abraham"
},
"bugs": {
"url": "https://github.com/Melvin-Abraham/issues"
},
"license": "Apache-2.0",
"keywords": [
"google-assistant",
"google-assistant-sdk",
"electron-app",
"virtual-assistant",
"desktop-app",
"electron",
"assistant",
"cross-platform"
],
"main": "app.js",
"build": {
"appId": "com.redvirus.g-assist",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json",
"app.js"
],
"directories": {
"buildResources": "app/res/misc/*"
},
"publish": null,
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "./app/res/icons/favicon.ico"
},
"nsis": {
"oneClick": "false",
"artifactName": "${productName}-Setup-${version}.${ext}",
"allowToChangeInstallationDirectory": "true",
"installerIcon": "./app/res/icons/Installer.ico",
"installerSidebar": "./app/res/misc/InstallerSidebar.bmp",
"uninstallerSidebar": "./app/res/misc/UninstallerSidebar.bmp"
},
"mac": {
"icon": "./app/res/icons/icon.icns",
"category": "public.app-category.productivity",
"target": [
"dmg"
],
"darkModeSupport": true
},
"dmg": {
"background": "./app/res/misc/DMG Background.png",
"icon": "./app/res/icons/icon.icns",
"iconSize": 100,
"contents": [
{
"x": 350,
"y": 280,
"type": "link",
"path": "/Applications"
},
{
"x": 80,
"y": 280,
"type": "file"
}
],
"window": {
"width": 600,
"height": 410
}
},
"linux": {
"artifactName": "${productName}-Setup-${version}-${arch}.${ext}",
"category": "Productivity",
"target": [
"AppImage",
"snap"
],
"icon": "./app/res/icons/icon.png"
},
"snap": {
"confinement": "strict",
"grade": "stable",
"plugs": [
"default",
"audio-record"
]
}
},
"scripts": {
"start": "electron .",
"start:verbose": "electron . --verbose",
"dist": "electron-builder",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"electron-is-accelerator": "^0.2.0",
"google-assistant": "0.6.4",
"grpc": "1.24.4"
},
"devDependencies": {
"electron": "9.3.5",
"electron-builder": "22.9.1"
}
}