mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-12 14:21:01 +00:00
cb902314db
Move html/body shell and global css to root app layout to avoid hydration/script warnings from nested document nodes. Disable provider theme injection and add a custom script-free theme switch in shared layout slots. Also migrate docs search static client initializer to ZBSearch (initDB), add zbsearch dependency, and align docs lint tooling with ESLint 9 compatibility so npm run lint passes.
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "3x-ui-docs",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "GPL-3.0-or-later",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"postinstall": "fumadocs-mdx",
|
|
"gen:api": "node scripts/gen-openapi.ts",
|
|
"typecheck": "fumadocs-mdx && next typegen && tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@orama/orama": "^3.1.18",
|
|
"fumadocs-core": "^16.14.1",
|
|
"fumadocs-docgen": "^3.1.0",
|
|
"fumadocs-mdx": "^15.2.2",
|
|
"fumadocs-openapi": "^11.2.3",
|
|
"fumadocs-ui": "^16.14.1",
|
|
"lucide-react": "^1.29.0",
|
|
"mermaid": "^11.16.1",
|
|
"next": "16.3.0",
|
|
"next-themes": "^0.4.6",
|
|
"react": "^19.2.8",
|
|
"react-dom": "^19.2.8",
|
|
"react-qr-code": "^2.2.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"zbsearch": "3.3.4",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.3.3",
|
|
"@types/mdx": "^2.0.14",
|
|
"@types/node": "^26.1.2",
|
|
"@types/react": "^19.2.18",
|
|
"@types/react-dom": "^19.2.4",
|
|
"eslint": "^9.39.5",
|
|
"eslint-config-next": "16.3.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"postcss": "^8.5.26",
|
|
"prettier": "^3.9.6",
|
|
"tailwindcss": "^4.3.3",
|
|
"typescript": "6.0.3",
|
|
"vitest": "^4.1.10"
|
|
},
|
|
"packageManager": "pnpm@11.20.0"
|
|
}
|