-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.67 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
{
"name": "meeting-notes",
"version": "1.9.3",
"description": "Local-first meeting notes for macOS — Audio Hijack + LM Studio + pyannote",
"main": "dist/electron/main/index.js",
"type": "module",
"scripts": {
"dev": "concurrently -k \"npm:dev:renderer\" \"npm:dev:main\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.node.json --watch & wait-on tcp:5174 && electron .",
"build": "tsc -p tsconfig.node.json && tsc -p tsconfig.preload.json && node -e \"require('fs').writeFileSync('dist/electron/preload/package.json', JSON.stringify({type:'commonjs'}))\" && vite build",
"build:audio-tap": "./audio-tap/scripts/build.sh",
"start": "electron .",
"dist": "npm run build:audio-tap && npm run build && npm run sidecar:bundle && electron-builder --mac && npm run dist:cleanup-loose-app",
"dist:cleanup-loose-app": "rm -rf release/mac-arm64/MeetingNotes.app && echo ' removed loose release/mac-arm64/MeetingNotes.app (use the dmg/zip in release/ instead — leaving the unboxed .app on disk causes LaunchServices to register it as a duplicate of /Applications/MeetingNotes.app)'",
"sidecar:bundle": "bash sidecar/scripts/build-bundle.sh",
"test": "vitest run",
"test:watch": "vitest",
"pretest": "npm rebuild better-sqlite3 --silent",
"posttest": "npx -y @electron/rebuild -f -w better-sqlite3 --silent || true",
"rebuild:electron": "npx -y @electron/rebuild -f -w better-sqlite3",
"rebuild:node": "npm rebuild better-sqlite3",
"postinstall": "npx -y @electron/rebuild -f -w better-sqlite3 || true",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"concurrently": "^8.2.0",
"electron": "^30.0.0",
"electron-builder": "^24.13.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.0",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vitest": "^1.5.0",
"wait-on": "^7.2.0"
},
"dependencies": {
"@vscode/ripgrep": "^1.15.9",
"better-sqlite3": "^11.0.0",
"chokidar": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"undici": "^6.25.0",
"zod": "^3.23.0",
"zustand": "^4.5.0"
}
}