-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.24 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
{
"name": "claude-code-hub-docs",
"description": "Build a full-stack web application with Next.js.",
"version": "0.1.0",
"private": true,
"cloudflare": {
"label": "Next.js Framework Starter",
"products": [
"Workers"
],
"categories": [],
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/05eee9e0-2c04-48fd-11bf-84e65f839000/public",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/4e913a56-fd99-4372-0586-9f1364173100/preview",
"publish": true
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"biome:check": "biome check .",
"biome:fix": "biome check --write .",
"check": "npm run build && tsc",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv env.d.ts",
"update:prices": "bun run scripts/convert-litellm-to-toml.ts"
},
"dependencies": {
"@algolia/autocomplete-core": "^1.19.4",
"@headlessui/react": "^2.2.9",
"@lobehub/icons": "^4.0.2",
"@markdoc/markdoc": "^0.5.4",
"@markdoc/next.js": "^0.5.0",
"@opennextjs/cloudflare": "^1.14.0",
"@sindresorhus/slugify": "^3.0.0",
"@tanstack/react-virtual": "^3.13.14",
"clsx": "^2.1.1",
"fast-glob": "^3.3.3",
"flexsearch": "^0.8.212",
"js-yaml": "^4.1.1",
"lucide-react": "^0.562.0",
"next": "^16.0.5",
"next-themes": "^0.4.6",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-highlight-words": "^0.21.0",
"schema-dts": "^1.1.5",
"simple-functional-loader": "^1.2.1",
"smol-toml": "^1.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^24.10.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-highlight-words": "^0.20.0",
"sharp": "0.34.5",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"wrangler": "^4.51.0"
}
}