-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "echo",
"version": "0.1.0",
"description": "Voice-to-text tool for macOS with LLM refinement",
"scripts": {
"start": "npm run electron:start",
"tauri": "tauri",
"dev": "npm run electron:start",
"build": "tauri build",
"setup": "bash scripts/setup-whisper.sh",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"electron:build": "tsc && mkdir -p dist/renderer && cp src/renderer/*.html src/renderer/*.js dist/renderer/",
"electron:start": "npm run electron:build && electron .",
"electron:pack": "electron-builder --dir",
"electron:dist": "electron-builder"
},
"keywords": [
"voice",
"transcription",
"speech-to-text",
"dictation",
"macos",
"whisper",
"menu-bar",
"privacy",
"local-first"
],
"author": "Dor Amir <amirdor@gmail.com>",
"license": "MIT",
"homepage": "https://doramirdor.github.io/echo/",
"repository": {
"type": "git",
"url": "https://github.com/doramirdor/echo.git"
},
"bugs": {
"url": "https://github.com/doramirdor/echo/issues"
},
"main": "dist/main/index.js",
"type": "commonjs",
"build": {
"appId": "com.echo.app",
"productName": "Echo",
"publish": {
"provider": "github",
"owner": "doramirdor",
"repo": "echo"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon/icon.icns",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Echo needs microphone access to record your voice for transcription.",
"NSSpeechRecognitionUsageDescription": "Echo uses speech recognition to provide real-time transcription.",
"LSUIElement": true
}
},
"dmg": {
"title": "Echo",
"iconSize": 80,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"dist/**/*",
"assets/**/*"
],
"asarUnpack": [
"**/node_modules/koffi/**"
],
"extraResources": [
{
"from": "assets/tray",
"to": "assets/tray"
}
]
},
"dependencies": {
"electron-store": "^11.0.2",
"electron-updater": "^6.6.2",
"koffi": "^3.1.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@tauri-apps/cli": "^2.11.3",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"eslint": "^9.27.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.32.0",
"vitest": "^3.2.3"
}
}