react-docs-ui 0.4.3 → 0.5.1

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.
@@ -0,0 +1 @@
1
+ export {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-docs-ui",
3
- "version": "0.4.3",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "description": "React documentation site UI components — navigation, sidebar, search, code highlight, MDX rendering and theming to help you build docs fast.",
6
6
  "homepage": "https://shenjianZ.github.io/react-docs-ui",
@@ -28,12 +28,12 @@
28
28
  "types": "./dist/types/index.d.ts",
29
29
  "import": "./dist/react-docs-ui.es.js"
30
30
  },
31
- "./dist/react-docs-ui.css": "./dist/react-docs-ui.css"
31
+ "./dist/style.css": "./dist/react-docs-ui.css"
32
32
  },
33
33
  "scripts": {
34
34
  "dev": "vite",
35
35
  "build": "tsc -b && vite build",
36
- "build:lib": "vite build --config vite.config.lib.ts",
36
+ "build:lib": "tsc -p tsconfig.lib.json && vite build --config vite.config.lib.ts",
37
37
  "preview": "vite preview",
38
38
  "lint": "eslint .",
39
39
  "prepublishOnly": "npm run build:lib"
@@ -99,5 +99,8 @@
99
99
  },
100
100
  "engines": {
101
101
  "node": ">=18"
102
+ },
103
+ "publishConfig": {
104
+ "access": "public"
102
105
  }
103
106
  }