-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.68 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.68 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
{
"name": "call-md",
"version": "1.0.0",
"type": "commonjs",
"description": "Call.md - Record meetings with real-time transcription and AI-powered insights",
"author": {
"name": "VideoDB",
"email": "support@videodb.io",
"url": "https://videodb.io"
},
"license": "MIT",
"main": "dist/main/index.js",
"scripts": {
"dev": "npm run build:main && concurrently -k \"npm run dev:renderer\" \"sleep 2 && electron .\"",
"dev:renderer": "vite",
"build": "npm run build:renderer && npm run build:main",
"build:main": "tsc -p tsconfig.node.json",
"build:renderer": "vite build",
"preview": "vite preview",
"start": "electron .",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"postinstall": "electron-rebuild -f -w better-sqlite3 || true",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"typecheck": "tsc --noEmit && tsc -p tsconfig.node.json --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@hono/node-server": "^1.14.1",
"@hono/trpc-server": "^0.3.4",
"@modelcontextprotocol/sdk": "^1.0.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-query": "^5.75.5",
"@trpc/client": "^11.1.2",
"@trpc/react-query": "^11.1.2",
"@trpc/server": "^11.1.2",
"@videodb/recorder": "^0.2.4",
"better-sqlite3": "^12.6.2",
"drizzle-orm": "^0.44.1",
"hono": "^4.7.5",
"openai": "^6.19.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"uuid": "^11.1.0",
"videodb": "^0.2.3",
"zod": "^3.25.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.16",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.1.2",
"drizzle-kit": "^0.31.0",
"electron": "^34.3.0",
"electron-builder": "^25.1.8",
"lucide-react": "^0.510.0",
"postcss": "^8.5.3",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"build": {
"extends": "./electron-builder.config.js"
}
}