-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
{
"name": "mac-cognition-transcriber",
"version": "1.0.0",
"description": "Real-time transcription with sentiment analysis overlay",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"dist": "electron-builder --publish=never",
"swift:make": "cd macos-system-audio && swiftc Recorder.swift -o Recorder"
},
"keywords": [
"transcription",
"whisper",
"sentiment",
"overlay"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.6.4"
},
"dependencies": {
"fluent-ffmpeg": "^2.1.3",
"node-ipc": "^11.1.0",
"node-microphone": "^0.1.6",
"uuid": "^11.1.0"
},
"build": {
"appId": "com.maccognition.transcriber",
"productName": "Mac Cognition Transcriber",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/**/*",
"!dist/**/*",
"!venv/**/*",
"!*.py",
"!requirements.txt",
"!setup.sh"
],
"mac": {
"category": "public.app-category.productivity",
"target": "dmg",
"icon": "assets/icon.icns"
},
"dmg": {
"title": "Mac Cognition Transcriber",
"icon": "assets/icon.icns",
"background": "assets/dmg-background.png",
"window": {
"width": 540,
"height": 380
}
}
}
}