-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.67 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.67 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
{
"name": "superwall-docs",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"generate:changelog": "bun run scripts/generate-changelog.ts",
"download:references": "bun run scripts/download-references.ts",
"test": "bun test",
"predev": "bun run scripts/copy-docs-images.cjs",
"dev": "vite dev",
"dev:port": "vite dev --port",
"prebuild": "bun run generate:changelog && bun run scripts/copy-docs-images.cjs",
"build": "NODE_OPTIONS=--max-old-space-size=8192 vite build && bun run scripts/generate-static-cache.ts",
"build:cf": "bun run build",
"build:cf:staging": "NODE_OPTIONS=--max-old-space-size=8192 CLOUDFLARE_ENV=staging vite build",
"sync:mixedbread": "mxbai vs sync $MIXEDBREAD_STORE_ID './content/docs' --ci",
"preview": "vite preview",
"preview:cf": "bun run build:cf && vite preview",
"deploy": "bun run build:cf && wrangler deploy",
"deploy:staging": "bun run build:cf:staging && wrangler deploy",
"cf:typegen": "wrangler types",
"types:check": "fumadocs-mdx && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"@mixedbread/sdk": "^0.56.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-presence": "^1.1.5",
"@tanstack/react-router": "1.163.3",
"@tanstack/react-router-devtools": "1.163.3",
"@tanstack/react-start": "1.166.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fumadocs-core": "16.6.8",
"fumadocs-mdx": "14.2.9",
"fumadocs-ui": "16.6.8",
"gray-matter": "^4.0.3",
"hast-util-to-jsx-runtime": "^2.3.6",
"lucide-react": "^0.576.0",
"mermaid": "^11.12.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remark": "^15.0.1",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwind-merge": "^3.5.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vite": "^7.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.25.6",
"@mixedbread/cli": "^2.2.3",
"@tailwindcss/vite": "^4.2.1",
"@types/mdx": "^2.0.13",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"srvx": "^0.11.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"wrangler": "^4.69.0"
}
}