-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.96 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
109
110
111
112
{
"name": "beatdesign",
"version": "0.2.3",
"private": true,
"description": "The open-source, local-first AI canvas for image and video creation and analysis",
"license": "Apache-2.0",
"homepage": "https://design.beatapi.io",
"repository": {
"type": "git",
"url": "git+https://github.com/BeatAPI/BeatDesign.git"
},
"bugs": {
"url": "https://github.com/BeatAPI/BeatDesign/issues"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"dev": "tsx scripts/prepare-paraglide.ts && vite dev --host 127.0.0.1 --port 3020 --strictPort",
"dev:agent": "node scripts/dev-with-mcp.mjs",
"test": "node scripts/run-tests.mjs",
"typecheck": "tsc --noEmit",
"i18n:check": "node scripts/check-i18n.mjs",
"integration:check:workbuddy": "tsx scripts/validate-workbuddy-connector.ts",
"integration:build:workbuddy-runtime": "pnpm build && tsx scripts/build-workbuddy-runtime-package.ts",
"integration:pack:workbuddy-runtime": "pnpm integration:build:workbuddy-runtime && npm pack ./dist/workbuddy-runtime-package --pack-destination ./dist",
"integration:probe:workbuddy-runtime": "tsx scripts/probe-workbuddy-runtime-package.ts",
"integration:package:workbuddy": "tsx scripts/package-workbuddy-connector.ts",
"media:localize": "tsx scripts/localize-project-media.ts",
"mcp": "tsx scripts/mcp-server.ts",
"mcp:http": "tsx scripts/mcp-server.ts --http",
"prebuild": "node scripts/db-setup.mjs",
"build": "tsx scripts/prepare-paraglide.ts && vite build && node scripts/sanitize-output.mjs",
"start": "node .output/server/index.mjs",
"postinstall": "mkdir -p data && (test -f src/config/db/schema.ts || node scripts/db-setup.mjs)",
"db:setup": "node scripts/db-setup.mjs",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=drizzle.config.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1069.0",
"@aws-sdk/s3-request-presigner": "^3.1069.0",
"@base-ui/react": "^1.3.0",
"@fontsource-variable/figtree": "^5.3.0",
"@fontsource-variable/geist-mono": "^5.3.0",
"@fontsource-variable/space-grotesk": "^5.3.0",
"@libsql/client": "^0.14.0",
"@mdx-js/react": "^3.1.1",
"@modelcontextprotocol/server": "^2.0.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "1.170.11",
"@tanstack/react-start": "1.168.19",
"@types/mdx": "^2.0.13",
"@xyflow/react": "12.11.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"drizzle-orm": "^0.45.2",
"jszip": "^3.10.1",
"lucide-react": "^0.511.0",
"mediabunny": "1.25.3",
"next-themes": "^0.4.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"s3mini": "^0.9.5",
"simple-flakeid": "^0.0.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tslib": "^2.8.1",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@inlang/paraglide-js": "^2.18.2",
"@mdx-js/rollup": "^3.1.1",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-query-devtools": "^5.101.0",
"@types/node": "^22.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^6.0.2",
"drizzle-kit": "^0.31.4",
"esbuild": "0.28.1",
"nitro": "3.0.260603-beta",
"rollup": "4.62.4",
"shadcn": "^4.16.1",
"tailwindcss": "^4.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"vite": "^8.0.16"
},
"pnpm": {
"overrides": {
"@babel/core": "7.29.6",
"browserslist": "4.28.7",
"esbuild": "0.28.1",
"js-yaml": "4.3.1",
"kysely": "0.28.17",
"linkify-it": "5.0.2",
"nanoid": "3.3.18",
"postcss": "8.5.25",
"qs": "6.15.3",
"uuid": "13.0.1",
"ws": "8.21.2"
}
}
}