-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 891 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 891 Bytes
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
{
"name": "edgespeech-desktop",
"version": "1.0.0",
"description": "离线语音识别桌面端 - 100% Private Speech-to-Text",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --enable-logging",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": ["speech-recognition", "asr", "offline", "electron", "moonshine"],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.13.3"
},
"dependencies": {},
"build": {
"appId": "com.edgespeech.desktop",
"productName": "EdgeSpeech",
"mac": {
"category": "public.app-category.productivity",
"icon": "public/icon.icns"
},
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"public/**/*",
"backend/**/*"
]
}
}