react-docs-ui 0.2.0 → 0.4.0
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/README.md +49 -77
- package/dist/react-docs-ui.css +1 -1
- package/dist/react-docs-ui.es.js +26717 -12136
- package/package.json +103 -96
package/package.json
CHANGED
|
@@ -1,96 +1,103 @@
|
|
|
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
|
-
|
|
96
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "react-docs-ui",
|
|
3
|
+
"version": "0.4.0",
|
|
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
|
+
"module": "dist/react-docs-ui.es.js",
|
|
20
|
+
"types": "dist/types/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"package.json"
|
|
25
|
+
],
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/types/index.d.ts",
|
|
29
|
+
"import": "./dist/react-docs-ui.es.js"
|
|
30
|
+
},
|
|
31
|
+
"./dist/react-docs-ui.css": "./dist/react-docs-ui.css"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "tsc -b && vite build",
|
|
36
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"lint": "eslint .",
|
|
39
|
+
"prepublishOnly": "npm run build:lib"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@mdx-js/loader": "^3.0.0",
|
|
43
|
+
"@mdx-js/react": "^3.0.0",
|
|
44
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
45
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
46
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
47
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
48
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
49
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
50
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
51
|
+
"class-variance-authority": "^0.7.1",
|
|
52
|
+
"clsx": "^2.1.1",
|
|
53
|
+
"cmdk": "^1.1.1",
|
|
54
|
+
"gray-matter": "^4.0.3",
|
|
55
|
+
"js-yaml": "^4.1.0",
|
|
56
|
+
"katex": "^0.16.11",
|
|
57
|
+
"katex-physics": "^1.0.2",
|
|
58
|
+
"lucide-react": "^0.539.0",
|
|
59
|
+
"next-themes": "^0.4.6",
|
|
60
|
+
"react-markdown": "^10.1.0",
|
|
61
|
+
"rehype-autolink-headings": "^7.1.0",
|
|
62
|
+
"rehype-highlight": "^7.0.2",
|
|
63
|
+
"rehype-katex": "^7.0.1",
|
|
64
|
+
"rehype-raw": "^7.0.0",
|
|
65
|
+
"rehype-slug": "^6.0.0",
|
|
66
|
+
"remark-gfm": "^4.0.1",
|
|
67
|
+
"remark-math": "^6.0.0",
|
|
68
|
+
"tailwind-merge": "^3.3.1",
|
|
69
|
+
"unist-util-visit": "^5.1.0"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@eslint/js": "^9.32.0",
|
|
73
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
74
|
+
"@types/node": "^24.2.1",
|
|
75
|
+
"@types/react": "^19.1.9",
|
|
76
|
+
"@types/react-dom": "^19.1.7",
|
|
77
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
78
|
+
"buffer": "^6.0.3",
|
|
79
|
+
"eslint": "^9.32.0",
|
|
80
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
81
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
82
|
+
"glob": "^11.0.3",
|
|
83
|
+
"globals": "^16.3.0",
|
|
84
|
+
"react": "^19.0.0",
|
|
85
|
+
"react-dom": "^19.0.0",
|
|
86
|
+
"react-router-dom": "^7.8.0",
|
|
87
|
+
"tailwindcss": "^4.1.11",
|
|
88
|
+
"tw-animate-css": "^1.3.6",
|
|
89
|
+
"typescript": "~5.8.3",
|
|
90
|
+
"typescript-eslint": "^8.39.0",
|
|
91
|
+
"vite": "^7.1.0",
|
|
92
|
+
"vite-plugin-dts": "^4.5.4",
|
|
93
|
+
"vite-plugin-node-polyfills": "^0.24.0"
|
|
94
|
+
},
|
|
95
|
+
"peerDependencies": {
|
|
96
|
+
"react": ">=18",
|
|
97
|
+
"react-dom": ">=18",
|
|
98
|
+
"react-router-dom": "^7"
|
|
99
|
+
},
|
|
100
|
+
"engines": {
|
|
101
|
+
"node": ">=18"
|
|
102
|
+
}
|
|
103
|
+
}
|