-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.23 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.23 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
{
"type": "module",
"name": "@fixfx/website",
"description": "A comprehensive documentation platform for FiveM development, providing detailed guides, tutorials, and best practices for the FiveM community.",
"author": "CodeMeAPixel <https://cmap.lol>",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version": "node .github/scripts/get-version.js",
"version:json": "node .github/scripts/get-version.js --json",
"analyze:commits": "node .github/scripts/analyze-commits.js",
"analyze:commits:json": "node .github/scripts/analyze-commits.js --json",
"trusted-hosts:update": "node .github/scripts/update-trusted-hosts.js",
"trusted-hosts:validate": "node .github/scripts/validate-trusted-hosts.js",
"knip:exports": "knip --exports",
"knip:deps": "knip --dependencies",
"knip:files": "knip --files",
"knip:prod": "knip --production",
"knip:fix": "knip --fix",
"postinstall": "fumadocs-mdx",
"prepare": "husky install"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.34",
"@ai-sdk/google": "^0.0.30",
"@ai-sdk/openai": "^0.0.38",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.1.7",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.2",
"@vercel/analytics": "^1.3.2",
"@vercel/functions": "^2.0.0",
"ai": "^3.2.34",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"fumadocs-core": "14.6.1",
"fumadocs-mdx": "10.0.2",
"fumadocs-openapi": "5.10.6",
"fumadocs-ui": "14.6.8",
"gray-matter": "^4.0.3",
"lucide-react": "^0.469.0",
"motion": "^11.16.2",
"next": "15.5.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"shiki": "^1.26.0",
"uuid": "^13.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@next/eslint-plugin-next": "^16.1.5",
"@types/mdx": "^2.0.13",
"@types/node": "22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"commitlint": "19.8.1",
"eslint": "^9.39.2",
"husky": "^8.0.3",
"knip": "^5.78.0",
"postcss": "^8.4.45",
"prettier": "^3.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4"
}
}