-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.12 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.12 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
{
"name": "meeting-summarizer",
"version": "1.0.0",
"description": "Desktop app to record meetings and create AI summaries",
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "electron .",
"electron": "wait-on http://localhost:3000 && npx electron .",
"dev": "concurrently \"npm start\" \"npm run electron\"",
"rebuild": "electron-rebuild -f -w whisper-node,fluent-ffmpeg",
"package": "npm run build && electron-builder"
},
"keywords": [
"meeting",
"recorder",
"summarizer",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/vite": "^4.1.1",
"electron-is-dev": "^3.0.1",
"fluent-ffmpeg": "^2.1.3",
"openai": "^4.91.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-scripts": "^5.0.1",
"whisper-node": "^1.1.1"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.2",
"daisyui": "^5.0.12",
"electron": "^35.1.3",
"electron-builder": "^26.0.12",
"postcss-loader": "^8.1.1",
"tailwindcss": "^4.1.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.meeting.summarizer",
"productName": "Meet Recap",
"files": [
"build/**/*",
"node_modules/**/*",
"public/electron.js",
"public/preload.js",
"public/mini-player.html",
"public/mini-player-renderer.js",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"target": "dmg",
"category": "public.app-category.productivity",
"icon": "assets/icon.icns"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}