-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.44 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
{
"name": "ak-docs",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.26.2",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"build": "next build && node scripts/emit-markdown-siblings.mjs",
"dev": "next dev",
"start": "serve out",
"typecheck": "next typegen && fumadocs-mdx && tsc --noEmit",
"test": "node --test scripts/*.test.mjs",
"lint": "remark content --quiet --frail",
"check:catalog": "node scripts/check-kit-catalog.mjs",
"check:assets": "node scripts/check-static-assets.mjs",
"check:links": "node scripts/check-links.mjs",
"check:reference": "node scripts/check-reference-hygiene.mjs",
"check:quality:shape": "node scripts/release-quality-shape.mjs",
"check:quality:metrics": "node scripts/release-quality-metrics.mjs",
"check:quality": "pnpm check:quality:shape && pnpm check:quality:metrics",
"quality:receipt": "node scripts/release-quality-metrics.mjs --receipt",
"quality:benchmark": "node scripts/release-quality-metrics.mjs --benchmark --include-build --runs 5",
"compile:prose": "node scripts/compile-prose.mjs",
"check:prose": "node scripts/compile-prose.mjs --check",
"postinstall": "fumadocs-mdx",
"deploy:staging": "pnpm build && wrangler deploy --env staging",
"deploy:production": "pnpm build && wrangler deploy --env production"
},
"dependencies": {
"@orama/orama": "^3.1.18",
"cnfast": "^0.0.8",
"fumadocs-core": "16.11.5",
"fumadocs-mdx": "15.2.0",
"fumadocs-ui": "npm:@fumadocs/base-ui@16.11.5",
"geist": "^1.7.2",
"lucide-react": "^1.24.0",
"mermaid": "^11.16.0",
"next": "16.2.10",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.17",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-lint": "^10.0.1",
"remark-lint-no-undefined-references": "^5.0.2",
"remark-mdx": "^3.1.1",
"serve": "^14.2.6",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"wrangler": "^4.112.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd",
"sharp",
"wrangler"
],
"patchedDependencies": {
"next-themes@0.4.6": "patches/next-themes@0.4.6.patch"
}
}
}