-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "openwhisp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Mac-first local dictation with lightweight Whisper transcription and Ollama rewriting.",
"main": "dist/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"typecheck": "tsc --noEmit",
"build:native": "swiftc swift/OpenWhispHelper.swift -o build/native/openwhisp-helper",
"package": "npm run build && npm run build:native && electron-builder"
},
"build": {
"appId": "ai.openwhisp.desktop",
"productName": "OpenWhisp",
"files": [
"dist/**/*",
"package.json"
],
"extraResources": [
{
"from": "build/native",
"to": "native"
}
],
"directories": {
"buildResources": "build",
"output": "release"
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"NSMicrophoneUsageDescription": "OpenWhisp needs microphone access to transcribe your speech locally."
}
}
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@huggingface/transformers": "^4.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.2",
"vite": "^7.3.2"
}
}