@docubook/ui-react 0.1.3 → 0.1.4
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/package.json +12 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Wildan Nursahidan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docubook/ui-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "React + DaisyUI component library for documentation sites",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -143,16 +143,6 @@
|
|
|
143
143
|
"README.md"
|
|
144
144
|
],
|
|
145
145
|
"sideEffects": false,
|
|
146
|
-
"scripts": {
|
|
147
|
-
"build": "tsup",
|
|
148
|
-
"dev": "tsup --watch",
|
|
149
|
-
"typecheck": "tsc --noEmit",
|
|
150
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
151
|
-
"test": "vitest run",
|
|
152
|
-
"test:watch": "vitest",
|
|
153
|
-
"clean": "rm -rf dist",
|
|
154
|
-
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run test"
|
|
155
|
-
},
|
|
156
146
|
"peerDependencies": {
|
|
157
147
|
"daisyui": ">=5.0.0 <6.0.0",
|
|
158
148
|
"lucide-react": ">=1.0.0",
|
|
@@ -173,7 +163,7 @@
|
|
|
173
163
|
"react-dom": "^19.2.0",
|
|
174
164
|
"tsup": "^8.5.0",
|
|
175
165
|
"typescript": "^5.9.3",
|
|
176
|
-
"vitest": "^4.1.
|
|
166
|
+
"vitest": "^4.1.8"
|
|
177
167
|
},
|
|
178
168
|
"publishConfig": {
|
|
179
169
|
"access": "public"
|
|
@@ -200,5 +190,14 @@
|
|
|
200
190
|
"dependencies": {
|
|
201
191
|
"clsx": "^2.1.1",
|
|
202
192
|
"tailwind-merge": "^2.6.1"
|
|
193
|
+
},
|
|
194
|
+
"scripts": {
|
|
195
|
+
"build": "tsup",
|
|
196
|
+
"dev": "tsup --watch",
|
|
197
|
+
"typecheck": "tsc --noEmit",
|
|
198
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
199
|
+
"test": "vitest run",
|
|
200
|
+
"test:watch": "vitest",
|
|
201
|
+
"clean": "rm -rf dist"
|
|
203
202
|
}
|
|
204
|
-
}
|
|
203
|
+
}
|