forked from Laxcorp-Research/project-raven
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.46 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.46 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
{
"name": "project-raven",
"private": true,
"version": "0.1.0",
"description": "Open-source AI meeting assistant with real-time transcription and intelligent suggestions, invisible to screen sharing.",
"author": "Laxcorp Research <hello@laxcorpresearch.com>",
"license": "MIT",
"homepage": "https://github.com/Laxcorp-Research/project-raven",
"repository": {
"type": "git",
"url": "https://github.com/Laxcorp-Research/project-raven.git"
},
"bugs": {
"url": "https://github.com/Laxcorp-Research/project-raven/issues"
},
"keywords": [
"meeting-assistant",
"ai",
"transcription",
"electron",
"deepgram",
"anthropic",
"openai",
"screen-sharing",
"real-time"
],
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"postinstall": "npx @electron/rebuild -f -w better-sqlite3 -m .",
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --include 'src/main/__tests__/integration/**'",
"test:e2e": "npx playwright test --config e2e/playwright.config.ts",
"test:all": "vitest run && npx playwright test --config e2e/playwright.config.ts",
"preview": "vite preview",
"build:aec": "cd src/native/aec && npm install --cache /tmp/npm-cache-aec && npx cmake-js compile",
"build:swift": "cd src/native/swift/AudioCapture && swift build -c release"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@deepgram/sdk": "^4.11.3",
"@electron-toolkit/utils": "^4.0.0",
"@fontsource/inter": "^5.2.8",
"@types/katex": "^0.16.8",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.6.2",
"bindings": "^1.5.0",
"bufferutil": "^4.1.0",
"electron-store": "^11.0.2",
"electron-updater": "^6.7.3",
"framer-motion": "^12.34.2",
"katex": "^0.16.28",
"lucide-react": "^0.564.0",
"mammoth": "^1.11.0",
"openai": "^6.22.0",
"pdf-parse": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"utf-8-validate": "^6.0.6",
"uuid": "^13.0.0",
"ws": "^8.19.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"cross-env": "^10.1.0",
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.2.2",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^4.0.18"
},
"main": "dist/main/index.js"
}