forked from t41372/Open-LLM-VTuber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 975 Bytes
/
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
{
"name": "Elaina",
"version": "1.0.0",
"description": "Elaina Desktop Pet",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": "Ethan Lee",
"license": "MIT",
"devDependencies": {
"electron": "^33.0.1",
"electron-builder": "^25.1.8",
"electron-rebuild": "^3.2.9"
},
"dependencies": {
"@picovoice/porcupine-web": "^3.0.3",
"@picovoice/web-voice-processor": "^4.0.9",
"mic": "^2.1.2"
},
"build": {
"appId": "com.ethanlee.elaina",
"mac": {
"target": "dmg",
"category": "public.app-category.utilities",
"icon": "static/pictures/icon.icns"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "static/pictures/icon.ico",
"sign": false
},
"files": [
"main.js",
"package.json",
"static/**/*",
"node_modules/**/*"
],
"asarUnpack": [
"**/static/**"
]
}
}