-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.12 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
{
"name": "taibu-app",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "node scripts/dev-with-core-watch.mjs",
"dev:web": "next dev",
"build": "pnpm -C packages/core build && next build",
"start": "next start",
"lint": "pnpm lint:code && pnpm lint:guards",
"lint:code": "eslint .",
"lint:guards": "node scripts/check-architecture-guards.mjs",
"test:npm-packages": "pnpm -C packages/core build && pnpm -C packages/mcp build && node --test scripts/tests/npm-package-artifacts.test.mjs",
"prepare:github-packages": "node scripts/prepare-github-package.mjs --package core --package mcp --output .release/github-packages",
"test:github-packages": "node --test scripts/tests/prepare-github-package.test.mjs",
"test": "pnpm -C packages/core build && pnpm -C packages/mcp build && pnpm -C packages/mcp-server build && NODE_OPTIONS=--require=./scripts/ts-register.cjs node --test src/tests/*.test.ts packages/core/tests/*.test.mjs packages/mcp/tests/*.test.mjs packages/mcp-server/tests/*.test.mjs",
"build:core": "pnpm -C packages/core build"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.48",
"@capacitor/android": "^8.0.1",
"@capacitor/cli": "^8.0.1",
"@capacitor/core": "^8.0.1",
"@capacitor/ios": "^8.0.1",
"@lobehub/icons": "^4.0.2",
"taibu-core": "workspace:*",
"@phosphor-icons/react": "^2.1.10",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.89.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-virtual": "^3.13.18",
"@vercel/analytics": "^1.6.1",
"ai": "^6.0.137",
"html2canvas": "^1.4.1",
"iztro": "^2.5.4",
"lucide-react": "^0.562.0",
"lunar-javascript": "^1.7.7",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}