-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.04 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.04 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
{
"name": "commandly",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/index.tsx",
"module": "src/index.tsx",
"scripts": {
"build": "tsgo -b && vite build",
"coverage": "vitest run --coverage",
"dev": "vite dev",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"mcp": "bun run mcp/index.ts",
"registry:build": "shadcn build",
"specification:build": "bun run ./scripts/generate-specification.ts",
"start": "bun run ./.output/server/index.mjs",
"test": "vitest run --config ./vitest.config.ts",
"test:ui": "vitest --ui",
"test:watch": "vitest --config ./vitest.config.ts",
"tools:build": "bun run ./scripts/generate-tools-json.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.63",
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/groq": "^3.0.31",
"@ai-sdk/mistral": "^3.0.27",
"@ai-sdk/openai": "^3.0.47",
"@ai-sdk/xai": "^3.0.73",
"@base-ui/react": "^1.3.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-pacer": "^0.21.0",
"@tanstack/react-query": "^5.95.0",
"@tanstack/react-router": "1.168.2",
"@tanstack/react-router-with-query": "1.130.17",
"@tanstack/react-start": "^1.167.3",
"ai": "^6.0.134",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.577.0",
"motion": "^12.38.0",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@mdx-js/rollup": "^3.1.1",
"@tanstack/react-query-devtools": "^5.95.0",
"@tanstack/react-router-devtools": "1.166.11",
"@tanstack/router-plugin": "1.167.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.11",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260320.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.0",
"ajv": "^8.18.0",
"jsdom": "^29.0.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"rehype-pretty-code": "^0.14.3",
"remark-gfm": "^4.0.1",
"shadcn": "^4.1.0",
"shiki": "^4.0.2",
"typescript": "^5.9.3",
"typescript-json-schema": "^0.67.1",
"vite": "^8.0.2",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0"
}
}