-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.69 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
{
"name": "voxfab-ai",
"version": "1.3.4",
"description": "System-wide voice-to-text desktop app",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:mac:apple-silicon": "electron-builder --mac dmg --arm64 && node scripts/rename-mac-dmgs.js arm64",
"build:mac:intel": "electron-builder --mac dmg --x64 && node scripts/rename-mac-dmgs.js x64",
"build:mac:both-dmg": "npm run build:mac:apple-silicon && npm run build:mac:intel"
},
"build": {
"appId": "com.personal.voxfab-ai",
"productName": "VoxFab AI",
"publish": null,
"artifactName": "VoxFab-AI-${version}-macOS-${arch}.${ext}",
"dmg": {
"title": "VoxFab AI ${version}"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.png",
"category": "public.app-category.productivity"
},
"win": {
"target": [
"zip",
"portable"
],
"sign": null
},
"asar": true,
"asarUnpack": [
"**/node_modules/@nut-tree-fork/**/*",
"scripts/**/*"
],
"files": [
"**/*",
"!node_modules/.cache/**",
"!dist",
"!Voice To Text-win32-x64",
"!*.zip",
"!*.lnk",
"!*.bat",
"!*.vbs",
"!.git"
]
},
"keywords": [
"voice",
"speech",
"text",
"transcription"
],
"author": "Ilya Tsuprun",
"license": "CC-BY-NC-SA-4.0",
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.0.0",
"@nut-tree-fork/nut-js": "^4.2.0",
"electron-store": "^10.0.0",
"openai": "^4.0.0"
}
}