-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "lazydocs",
"version": "1.0.0",
"description": "A simple and customizable documentation platform - Clone, write Markdown, and deploy your docs",
"type": "module",
"scripts": {
"dev": "npm run generate-sidebar && vite",
"build": "npm run generate-sidebar && npm run sitemap && vite build",
"preview": "vite preview",
"generate-sidebar": "node scripts/generate-sidebar.js",
"sitemap": "node scripts/generate-sitemap.js"
},
"keywords": [
"documentation",
"markdown",
"docs",
"static-site",
"documentation-generator"
],
"author": "",
"license": "MIT",
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^12.23.24",
"front-matter": "^4.0.2",
"fuse.js": "^7.1.0",
"lucide-react": "^0.263.1",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.20.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"vite": "^6.4.1"
}
}