-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.13 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
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "antiraid-docs",
"version": "0.0.0",
"private": true,
"author": "Ranveer Soni <ranveersoni.me>",
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"format": "prettier --write .",
"start": "next start",
"postinstall": "fumadocs-mdx",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"lint": "fumadocs-mdx && tsx src/scripts/lint.mts && biome lint",
"lint:write": "biome lint --write .",
"lint:unsafe": "biome lint --write --unsafe .",
"typecheck": "tsc --noEmit",
"generate:openapi": "tsx src/scripts/pre-build.mts",
"with-env": "dotenv -e ../../.env --"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@fumadocs/mdx-remote": "^1.4.3",
"@next/bundle-analyzer": "^15.3.4",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@shikijs/rehype": "^3.7.0",
"ajv": "^8.17.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "latest",
"fumadocs-core": "^16.0.1",
"fumadocs-docgen": "latest",
"fumadocs-mdx": "^13.0.0",
"fumadocs-openapi": "^9.6.1",
"fumadocs-twoslash": "latest",
"fumadocs-typescript": "latest",
"fumadocs-ui": "latest",
"hast-util-to-jsx-runtime": "^2.3.6",
"katex": "^0.16.22",
"lucide-react": "^0.522.0",
"mermaid": "^11.7.0",
"motion": "latest",
"next": "^16.0.0",
"oxc-transform": "^0.56.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"react-icons": "^5.5.0",
"rehype-katex": "^7.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-mdx": "^3.1.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.1",
"shiki": "latest",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.4",
"twoslash": "latest",
"unist-util-visit": "^5.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@fumadocs/cli": "^0.2.1",
"@tailwindcss/postcss": "^4.1.10",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"chokidar": "^4.0.3",
"dotenv-cli": "^8.0.0",
"eslint": "^9.29.0",
"eslint-config-next": "15.3.4",
"gray-matter": "^4.0.3",
"lefthook": "^1.11.14",
"lint-staged": "^16.1.2",
"next-validate-link": "^1.5.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"tailwindcss": "^4.1.10",
"tinyglobby": "^0.2.14",
"ts-morph": "^26.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver"
]
}
}