forked from superwall/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.55 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.55 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": "@superwall-me/docs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"copy:docs-images": "bun run scripts/copy-docs-images.cjs",
"watch:images": "tsx scripts/watch-docs-images.ts",
"generate:md": "tsx scripts/generate-md-files.ts",
"generate:llm": "tsx scripts/generate-llm-files.ts",
"generate:title-map": "tsx scripts/generate-title-map.ts",
"build:prep": "bun run generate:title-map && bun run generate:llm && bun run generate:md && bun run copy:docs-images",
"build": "bun run build:prep && fumadocs-mdx && bun run build:next",
"build:next": "NEXT_PRIVATE_STANDALONE=true NEXT_PRIVATE_OUTPUT_TRACE_ROOT=$PWD next build --webpack",
"build:cf": "bun run build && opennextjs-cloudflare build -- --skipNextBuild",
"preview": "bun run build && opennextjs-cloudflare build -- --skipNextBuild && opennextjs-cloudflare preview",
"deploy": "bun run build && bunx opennextjs-cloudflare build -- --skipNextBuild && bunx opennextjs-cloudflare deploy",
"deploy:staging": "bun run build && bunx opennextjs-cloudflare build -- --skipNextBuild && bunx opennextjs-cloudflare deploy -- --env staging",
"upload": "bun run build && bunx opennextjs-cloudflare build -- --skipNextBuild && bunx opennextjs-cloudflare upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"dev": "bun run build:prep && run-p watch:images \"dev:next\"",
"dev:next": "next dev --turbo -p 8293",
"clear:cache": "tsx scripts/clear-cache.ts",
"start": "next start",
"download:references": "bun scripts/download-references.ts",
"generate:test-wrangler": "bun scripts/generate-test-wrangler.ts",
"sync:r2": "bun scripts/sync-r2.ts"
},
"dependencies": {
"@ai-sdk/react": "^2.0.109",
"@aws-sdk/client-s3": "^3.948.0",
"@radix-ui/react-dialog": "^1.1.11",
"ai": "^5.0.108",
"class-variance-authority": "^0.7.1",
"cli-progress": "^3.12.0",
"clsx": "^2.1.0",
"fumadocs-core": "^16.0.5",
"fumadocs-mdx": "^13.0.2",
"fumadocs-ui": "^16.0.5",
"lucide-react": "^0.503.0",
"nanoid": "^5.1.6",
"next": "16.0.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark": "^15.0.0",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.0.0",
"remark-parse": "^11.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^2.2.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"zod": "4.0.5"
},
"devDependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/node-loader": "^3.1.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "16.0.7",
"@opennextjs/cloudflare": "^1.11.0",
"@tailwindcss/postcss": "^4.1.5",
"@types/bun": "^1.3.3",
"@types/fs-extra": "^11.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "22.14.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/unist": "^3.0.0",
"autoprefixer": "^10.4.21",
"esbuild": "^0.24.2",
"fast-glob": "^3.3.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.x",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.1",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postinstall-postinstall": "^2.1.0",
"tailwindcss": "^4.1.5",
"tsx": "^4.20.3",
"typescript": "5.8.3",
"wrangler": "4.25.0"
},
"dependenciesMeta": {
"@opennextjs/cloudflare": {
"unplugged": true
}
},
"overrides": {
"js-yaml": "^4.1.0"
},
"packageManager": "bun@1.1.30"
}