-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.58 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.58 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
{
"name": "@mentra/notes",
"version": "0.1.0",
"description": "Notes - All-day transcription and AI-powered note generation",
"repository": {
"type": "git",
"url": "https://github.com/mentra/notes"
},
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "lsof -ti:3000 | xargs kill -9 2>/dev/null; NODE_ENV=development bun --watch src/index.ts",
"start": "bun src/index.ts",
"ngrok": "ngrok http 3000 --url https://isaiah-tpa.ngrok.app",
"test:eval:classifier": "bun test src/test/evals/classifier/triage-classifier.test.ts",
"test:eval:classifier:easy": "EVAL_DIFFICULTY=easy bun test src/test/evals/classifier/triage-classifier.test.ts",
"test:eval:classifier:medium": "EVAL_DIFFICULTY=medium bun test src/test/evals/classifier/triage-classifier.test.ts",
"test:eval:classifier:hard": "EVAL_DIFFICULTY=hard bun test src/test/evals/classifier/triage-classifier.test.ts",
"test:eval:classifier:realistic": "EVAL_DIFFICULTY=realistic bun test src/test/evals/classifier/triage-classifier.test.ts",
"test:eval:tracker": "bun test src/test/evals/conversation-tracker/conversation-tracker.test.ts",
"test:eval:tracker:context": "EVAL_TYPE=context bun test src/test/evals/conversation-tracker/conversation-tracker.test.ts",
"test:eval:tracker:resumption": "EVAL_TYPE=resumption bun test src/test/evals/conversation-tracker/conversation-tracker.test.ts",
"test:eval:tracker:summary": "EVAL_TYPE=summary bun test src/test/evals/conversation-tracker/conversation-tracker.test.ts",
"test:eval:search": "bun test src/test/evals/search/semantic-search.test.ts",
"test:eval:search:relevance": "EVAL_TYPE=relevance bun test src/test/evals/search/semantic-search.test.ts",
"test:eval:search:ranking": "EVAL_TYPE=ranking bun test src/test/evals/search/semantic-search.test.ts",
"test:eval:search:answer": "EVAL_TYPE=answer bun test src/test/evals/search/semantic-search.test.ts",
"seed:search": "bun src/test/seed-search-data.ts",
"seed:search:clean": "bun src/test/seed-search-data.ts --clean"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.35.0",
"@aws-sdk/client-s3": "^3.984.0",
"@google/genai": "^1.0.0",
"@mentra/react": "2.1.2",
"@mentra/sdk": "3.0.0-hono.6",
"@pdf-lib/fontkit": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.2",
"@tanstack/react-virtual": "^3.13.21",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"docx": "^9.6.0",
"hono": "^4.11.3",
"lucide-react": "^0.545.0",
"mongoose": "^9.0.2",
"motion": "^12.31.0",
"openai": "^6.27.0",
"pdf-lib": "^1.17.1",
"posthog-js": "^1.354.3",
"prop-types": "^15.8.1",
"react": "^19",
"react-dom": "^19",
"react-markdown": "^10.1.0",
"react-responsive-masonry": "^2.7.1",
"resend": "^6.9.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.3.8",
"vaul": "^1.1.2",
"wouter": "^3.9.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4.1.11",
"typescript": "^5.0.0"
}
}