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/package.json CHANGED
@@ -1,83 +1,96 @@
1
- {
2
- "name": "react-docs-ui",
3
- "version": "0.1.3",
4
- "type": "module",
5
- "description": "React Docs UI librarycomponents and layout to build documentation sites.",
6
- "main": "dist/react-docs-ui.umd.js",
7
- "module": "dist/react-docs-ui.es.js",
8
- "types": "dist/types/index.d.ts",
9
- "files": [
10
- "dist",
11
- "README.md",
12
- "package.json"
13
- ],
14
- "exports": {
15
- ".": {
16
- "import": "./dist/react-docs-ui.es.js",
17
- "require": "./dist/react-docs-ui.umd.js"
18
- },
19
- "./dist/react-docs-ui.css": "./dist/react-docs-ui.css"
20
- },
21
- "scripts": {
22
- "dev": "vite",
23
- "build": "tsc -b && vite build",
24
- "build:lib": "vite build --config vite.config.lib.ts",
25
- "preview": "vite preview",
26
- "lint": "eslint .",
27
- "prepublishOnly": "npm run build:lib"
28
- },
29
- "dependencies": {
30
- "@radix-ui/react-collapsible": "^1.1.11",
31
- "@radix-ui/react-context-menu": "^2.2.15",
32
- "@radix-ui/react-dialog": "^1.1.14",
33
- "@radix-ui/react-dropdown-menu": "^2.1.15",
34
- "@radix-ui/react-scroll-area": "^1.2.9",
35
- "@radix-ui/react-slot": "^1.2.3",
36
- "@radix-ui/react-tooltip": "^1.2.7",
37
- "@tailwindcss/vite": "^4.1.11",
38
- "buffer": "^6.0.3",
39
- "class-variance-authority": "^0.7.1",
40
- "clsx": "^2.1.1",
41
- "cmdk": "^1.1.1",
42
- "glob": "^11.0.3",
43
- "gray-matter": "^4.0.3",
44
- "js-yaml": "^4.1.0",
45
- "lowlight": "^3.3.0",
46
- "lucide-react": "^0.539.0",
47
- "next-themes": "^0.4.6",
48
- "react": ">=18",
49
- "react-dom": ">=18",
50
- "react-markdown": "^10.1.0",
51
- "react-router-dom": "^7.8.0",
52
- "rehype-autolink-headings": "^7.1.0",
53
- "rehype-highlight": "^7.0.2",
54
- "rehype-pretty-code": "^0.14.1",
55
- "rehype-raw": "^7.0.0",
56
- "rehype-slug": "^6.0.0",
57
- "remark-gfm": "^4.0.1",
58
- "shiki": "^3.9.2",
59
- "tailwind-merge": "^3.3.1",
60
- "tailwindcss": "^4.1.11"
61
- },
62
- "devDependencies": {
63
- "@eslint/js": "^9.32.0",
64
- "@types/node": "^24.2.1",
65
- "@types/react": "^19.1.9",
66
- "@types/react-dom": "^19.1.7",
67
- "@vitejs/plugin-react": "^4.7.0",
68
- "eslint": "^9.32.0",
69
- "eslint-plugin-react-hooks": "^5.2.0",
70
- "eslint-plugin-react-refresh": "^0.4.20",
71
- "globals": "^16.3.0",
72
- "tw-animate-css": "^1.3.6",
73
- "typescript": "~5.8.3",
74
- "typescript-eslint": "^8.39.0",
75
- "vite": "^7.1.0",
76
- "vite-plugin-dts": "^4.5.4",
77
- "vite-plugin-node-polyfills": "^0.24.0"
78
- },
79
- "peerDependencies": {
80
- "react": ">=18",
81
- "react-dom": ">=18"
82
- }
83
- }
1
+ {
2
+ "name": "react-docs-ui",
3
+ "version": "0.1.7",
4
+ "type": "module",
5
+ "description": "React documentation site UI componentsnavigation, 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
+ }