-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.83 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.83 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
{
"name": "engineer-cafe-navigator-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"dev:network": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:clean": "rm -rf .next && next dev",
"install:css": "sh scripts/install-css.sh",
"seed:knowledge": "tsx -r dotenv/config scripts/seed-knowledge-base.ts",
"migrate:embeddings": "tsx -r dotenv/config scripts/migrate-embeddings.ts",
"import:narration": "tsx -r dotenv/config scripts/import-slide-narrations.ts",
"import:markdown": "tsx -r dotenv/config scripts/import-markdown-knowledge.ts",
"setup:admin": "tsx -r dotenv/config scripts/setup-admin-knowledge.ts",
"test": "cd scripts/tests && tsx run-tests.ts",
"test:integrated": "cd scripts/tests && tsx run-tests.ts integrated",
"test:router": "cd scripts/tests && tsx run-tests.ts router",
"test:calendar": "cd scripts/tests && tsx run-tests.ts calendar",
"test:context": "tsx scripts/tests/context-inheritance-test.ts",
"test:emotion": "tsx scripts/tests/emotion-tag-test.ts",
"vercel-build": "pnpm build"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@ai-sdk/google": "^1.2.18",
"@ai-sdk/openai": "^1.3.3",
"@google/generative-ai": "0.24.1",
"@headlessui/react": "^2.2.4",
"@marp-team/marp-cli": "^4.1.2",
"@marp-team/marp-core": "^4.1.0",
"@marp-team/marpit": "^3.1.3",
"@mastra/core": "^0.10.5",
"@mastra/pg": "^0.10.3",
"@mastra/rag": "^0.10.3",
"@mastra/voice-google": "^0.10.2",
"@pixiv/three-vrm": "^3.4.1",
"@pixiv/three-vrm-animation": "3.4.1",
"@supabase/supabase-js": "^2.49.8",
"@uiw/react-md-editor": "4.0.7",
"@upstash/redis": "1.34.9",
"ai": "^4.1.15",
"cron": "4.3.1",
"google-auth-library": "9.15.1",
"googleapis": "149.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.511.0",
"next": "^15.3.2",
"openai": "5.8.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "2.5.2",
"react-markdown": "10.1.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"swr": "2.3.3",
"three": "^0.176.0",
"uuid": "11.1.0",
"ws": "^8.18.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@types/three": "^0.176.0",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.20",
"dotenv": "16.5.0",
"eslint": "9.27.0",
"eslint-config-next": "15.3.3",
"ignore-loader": "^0.1.2",
"node-fetch": "3.3.2",
"node-loader": "^2.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}