-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "verse",
"productName": "Verse",
"version": "1.7.0",
"description": "Whisper voice transcription in the macOS menu bar.",
"license": "AGPL-3.0-only",
"main": "src/main.js",
"private": true,
"scripts": {
"start": "electron .",
"icon": "python3 scripts/make_icon.py",
"tray-icons": "python3 scripts/make_tray_icons.py",
"helper": "bash scripts/build_apple_helper.sh",
"predist": "npm run helper",
"build": "electron-builder --mac dir",
"dist": "electron-builder --mac dmg"
},
"build": {
"appId": "app.verse.transcriber",
"afterPack": "scripts/trim_electron.js",
"productName": "Verse",
"mac": {
"electronLanguages": [
"en"
],
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
},
{
"target": "dir",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.productivity",
"identity": null,
"icon": "build/icon.icns",
"extendInfo": {
"LSUIElement": true,
"NSMicrophoneUsageDescription": "Verse records audio to transcribe it.",
"NSSpeechRecognitionUsageDescription": "Verse can transcribe recordings with Apple's on-device speech models."
}
},
"files": [
"src/**/*",
"package.json"
],
"asarUnpack": [
"src/local_mlx_transcribe.py",
"src/bin/**"
]
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.8.1"
}
}