-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.19 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.19 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
{
"name": "scribe-docs",
"version": "1.0.0",
"description": "Beautiful open-source documentation framework for Next.js. The free Mintlify alternative.",
"private": false,
"license": "MIT",
"author": "RapierCraft",
"main": "src/components/content/index.ts",
"types": "src/lib/types.ts",
"homepage": "https://github.com/RapierCraft/Scribe",
"bugs": {
"url": "https://github.com/RapierCraft/Scribe/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RapierCraft/Scribe"
},
"files": [
"src/",
"public/scribe-logo.svg",
"scribe.config.ts",
"mdx-components.tsx",
"next.config.js",
"tailwind.config.ts",
"tsconfig.json",
"postcss.config.js",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.17.0"
},
"keywords": [
"documentation",
"docs",
"nextjs",
"react",
"mdx",
"mintlify",
"open-source",
"api-docs",
"developer-docs",
"technical-writing"
],
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"generate-search": "npx tsx scripts/generate-search-index.ts"
},
"dependencies": {
"next": "^16.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.1",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-slot": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next-themes": "^0.4.4",
"react-syntax-highlighter": "^15.6.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0",
"tsx": "^4.19.0"
}
}