-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "vxtron",
"description": "Recognize text from speech and copy it to clipboard",
"dependencies": {
"@google-cloud/speech": "^2.1.1",
"cosmiconfig": "^5.0.7",
"express": "^4.16.4",
"grpc": "^1.17.0",
"node-record-lpcm16": "^0.3.1",
"opn": "^5.4.0",
"pino": "^5.10.5",
"pino-pretty": "^2.5.0",
"socket.io": "^2.2.0"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder --dir",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "3.0.13",
"electron-builder": "^20.38.4"
},
"build": {
"appId": "me.spacet.vx",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"vxgui/build/**/*",
"speech/**/*",
"configuration.js",
"main.js"
]
},
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dtinth/vxtron.git"
},
"author": "Thai Pangsakulyanont <dtinth@spacet.me> (http://dt.in.th/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtinth/vxtron/issues"
},
"homepage": "https://github.com/dtinth/vxtron#readme"
}