-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.32 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.32 KB
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
{
"name": "com.jaxcore.bumblebee",
"description": "Bumblebee - JavaScript voice application server",
"author": "Jaxcore Software Inc.",
"version": "0.0.1",
"private": false,
"main": "public/electron.js",
"dependencies": {
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"bumblebee-deepspeech": "0.0.2",
"bumblebee-hotword": "0.0.9",
"electron-is-dev": "^1.1.0",
"jaxcore": "0.0.3",
"jaxcore-bumblebee": "0.0.4",
"jaxcore-say-node": "0.0.9",
"lodash": "^4.17.15",
"node-abi": "^2.18.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.4.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"bumblebee-assistant": "node --inspect=9222 ./public/bumblebee-assistant/start.js",
"bumblebee": "concurrently \"npm run dev\" \"npm run bumblebee-assistant\"",
"bumblebee-win": "concurrently \"npm run dev-win\" \"npm run bumblebee-assistant\"",
"dev": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron --inspect=5858 .\"",
"dev-win": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron --inspect=5858 .\"",
"rebuild": "npm rebuild --runtime=electron --target=9.0.2 --disturl=https://atom.io/download/atom-shell --abi=75",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist-win": "npm run build && electron-builder --x64"
},
"postinstall": "electron-builder install-app-deps",
"homepage": "./",
"build": {
"appId": "com.jaxcore.bumblebee",
"productName": "Jaxcore Bumblebee",
"files": [
"build/**/*",
"node_modules/**/*",
"package.json"
],
"buildDependenciesFromSource": true,
"artifactName": "Jaxcore-Bumblebee-${version}-${os}-${arch}.${ext}",
"dmg": {
"icon": "./assets/icon.icns",
"title": "${productName}"
},
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "./assets/icon.icns",
"identity": null
},
"win": {
"target": "nsis",
"icon": "./assets/icon-512.ico",
"artifactName": "Jaxcore-Bumblebee-${version}-${os}-${arch}.${ext}"
},
"linux": {
"target": [
{
"target": "AppImage"
}
],
"icon": "./assets/icon-1024x1024",
"synopsis": "Bumblebee - JavaScript voice application server",
"category": "Utility"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^5.0.0",
"electron": "^9.0.4",
"electron-builder": "^22.7.0",
"electron-rebuild": "^1.11.0",
"wait-on": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jaxcore/bumblebee-electron-app"
}
}