mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
chore: adjust docs and add cjk font
- Created a new documentation site under `apps/docs` using Vite, React, and MDX. - Added essential files including `index.html`, `package.json`, and various configuration files. - Implemented a file-system based routing system with automatic route generation from markdown files. - Included support for syntax highlighting, responsive design, and TypeScript. - Established a structure for documentation content with initial deployment guides and storage provider information. Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
67
apps/docs/package.json
Normal file
67
apps/docs/package.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"name": "@afilmory/docs",
|
||||
"type": "module",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "pnpm build:client && pnpm build:static && pnpm output",
|
||||
"build:client": "tsc -b && vite build",
|
||||
"build:static": "vite build --ssr src/main-static.tsx --outDir dist/static",
|
||||
"create:doc": "tsx ../../scripts/create-doc.ts",
|
||||
"dev": "vite",
|
||||
"lint": "eslint .",
|
||||
"output": "tsx scripts/build.ts",
|
||||
"preview": "pnpm dlx serve dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mdx-js/react": "^3.1.1",
|
||||
"@mdx-js/rollup": "^3.1.1",
|
||||
"@pastel-palette/colors": "1.0.0-canary.3",
|
||||
"@pastel-palette/tailwindcss": "1.0.0-canary.3",
|
||||
"@radix-ui/react-context-menu": "2.2.16",
|
||||
"@radix-ui/react-scroll-area": "1.2.10",
|
||||
"@tailwindcss/vite": "4.1.17",
|
||||
"@types/mdast": "^4.0.4",
|
||||
"lucide-react": "^0.553.0",
|
||||
"mdast": "^3.0.0",
|
||||
"motion": "12.23.24",
|
||||
"next-themes": "^0.4.6",
|
||||
"react": "^19.2.0",
|
||||
"react-dom": "^19.2.0",
|
||||
"remark-frontmatter": "^5.0.0",
|
||||
"remark-gfm": "^4.0.1",
|
||||
"remark-mdx": "^3.1.1",
|
||||
"remark-parse": "^11.0.0",
|
||||
"tailwind-scrollbar-hide": "^4.0.0",
|
||||
"unified": "^11.0.5",
|
||||
"unist-util-visit": "^5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.39.1",
|
||||
"@shikijs/rehype": "^3.15.0",
|
||||
"@tailwindcss/postcss": "catalog:",
|
||||
"@tailwindcss/typography": "catalog:",
|
||||
"@types/glob": "^9.0.0",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/react": "^19.2.3",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"@types/remark-heading-id": "^1.0.0",
|
||||
"@vitejs/plugin-react": "^5.1.1",
|
||||
"code-inspector-plugin": "1.2.10",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-plugin-react-hooks": "^7.0.1",
|
||||
"eslint-plugin-react-refresh": "^0.4.24",
|
||||
"glob": "^11.0.3",
|
||||
"globals": "^16.5.0",
|
||||
"shiki": "^3.15.0",
|
||||
"tailwind-scrollbar": "catalog:",
|
||||
"tailwindcss": "catalog:",
|
||||
"tailwindcss-animate": "catalog:",
|
||||
"tailwindcss-safe-area": "catalog:",
|
||||
"tailwindcss-uikit-colors": "catalog:",
|
||||
"tsx": "^4.20.6",
|
||||
"typescript": "~5.9.3",
|
||||
"typescript-eslint": "^8.46.4",
|
||||
"vite": "^7.2.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user