react-docs-ui 0.1.3 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +77 -88
- package/dist/config/site.en.yaml +39 -18
- package/dist/config/site.yaml +39 -10
- package/dist/docs/en/guide/configuration.md +149 -122
- package/dist/docs/en/guide/quick-start.md +107 -108
- package/dist/docs/zh-cn/guide/configuration.md +207 -122
- package/dist/docs/zh-cn/guide/quick-start.md +107 -108
- package/dist/react-docs-ui.css +1 -1
- package/dist/react-docs-ui.es.js +6023 -5748
- package/dist/react-docs-ui.es.js.map +1 -1
- package/dist/react-docs-ui.umd.js +123 -73
- package/dist/react-docs-ui.umd.js.map +1 -1
- package/package.json +96 -83
package/package.json
CHANGED
|
@@ -1,83 +1,96 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-docs-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "React
|
|
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
|
-
"react": "
|
|
49
|
-
"react-
|
|
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
|
-
"react": "
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "react-docs-ui",
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "React documentation site UI components — navigation, sidebar, search, code highlight, MDX rendering and theming to help you build docs fast.",
|
|
6
|
+
"homepage": "https://shenjianZ.github.io/react-docs-ui",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"react",
|
|
9
|
+
"docs",
|
|
10
|
+
"documentation",
|
|
11
|
+
"ui",
|
|
12
|
+
"component-library",
|
|
13
|
+
"react-components",
|
|
14
|
+
"mdx",
|
|
15
|
+
"markdown",
|
|
16
|
+
"documentation-site",
|
|
17
|
+
"typescript"
|
|
18
|
+
],
|
|
19
|
+
"main": "dist/react-docs-ui.umd.js",
|
|
20
|
+
"module": "dist/react-docs-ui.es.js",
|
|
21
|
+
"types": "dist/types/index.d.ts",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md",
|
|
25
|
+
"package.json"
|
|
26
|
+
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/react-docs-ui.es.js",
|
|
30
|
+
"require": "./dist/react-docs-ui.umd.js"
|
|
31
|
+
},
|
|
32
|
+
"./dist/react-docs-ui.css": "./dist/react-docs-ui.css"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"build": "tsc -b && vite build",
|
|
37
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"lint": "eslint .",
|
|
40
|
+
"prepublishOnly": "npm run build:lib"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
44
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
45
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
46
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
47
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
48
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
49
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
50
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
51
|
+
"buffer": "^6.0.3",
|
|
52
|
+
"class-variance-authority": "^0.7.1",
|
|
53
|
+
"clsx": "^2.1.1",
|
|
54
|
+
"cmdk": "^1.1.1",
|
|
55
|
+
"glob": "^11.0.3",
|
|
56
|
+
"gray-matter": "^4.0.3",
|
|
57
|
+
"js-yaml": "^4.1.0",
|
|
58
|
+
"lowlight": "^3.3.0",
|
|
59
|
+
"lucide-react": "^0.539.0",
|
|
60
|
+
"next-themes": "^0.4.6",
|
|
61
|
+
"react": ">=18",
|
|
62
|
+
"react-dom": ">=18",
|
|
63
|
+
"react-markdown": "^10.1.0",
|
|
64
|
+
"react-router-dom": "^7.8.0",
|
|
65
|
+
"rehype-autolink-headings": "^7.1.0",
|
|
66
|
+
"rehype-highlight": "^7.0.2",
|
|
67
|
+
"rehype-pretty-code": "^0.14.1",
|
|
68
|
+
"rehype-raw": "^7.0.0",
|
|
69
|
+
"rehype-slug": "^6.0.0",
|
|
70
|
+
"remark-gfm": "^4.0.1",
|
|
71
|
+
"shiki": "^3.9.2",
|
|
72
|
+
"tailwind-merge": "^3.3.1",
|
|
73
|
+
"tailwindcss": "^4.1.11"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@eslint/js": "^9.32.0",
|
|
77
|
+
"@types/node": "^24.2.1",
|
|
78
|
+
"@types/react": "^19.1.9",
|
|
79
|
+
"@types/react-dom": "^19.1.7",
|
|
80
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
81
|
+
"eslint": "^9.32.0",
|
|
82
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
83
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
84
|
+
"globals": "^16.3.0",
|
|
85
|
+
"tw-animate-css": "^1.3.6",
|
|
86
|
+
"typescript": "~5.8.3",
|
|
87
|
+
"typescript-eslint": "^8.39.0",
|
|
88
|
+
"vite": "^7.1.0",
|
|
89
|
+
"vite-plugin-dts": "^4.5.4",
|
|
90
|
+
"vite-plugin-node-polyfills": "^0.24.0"
|
|
91
|
+
},
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"react": ">=18",
|
|
94
|
+
"react-dom": ">=18"
|
|
95
|
+
}
|
|
96
|
+
}
|