uilab-core 0.1.5 → 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/dist/components/badge.d.ts +1 -1
- package/dist/components/container.d.ts +8 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uilab-core",
|
|
3
3
|
"description": "Uilab base components and blocks",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "",
|
|
7
7
|
"type": "module",
|
|
@@ -30,13 +30,16 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
34
33
|
"prebuild": "rimraf ./dist",
|
|
35
34
|
"build": "rollup -c",
|
|
36
35
|
"release": "npm run build && npm publish",
|
|
37
36
|
"format": "prettier \"src/**/*.{ts,tsx}\" --write --log-level silent",
|
|
38
37
|
"lint": "eslint --max-warnings 0",
|
|
39
|
-
"lint:fix": "eslint --max-warnings 0 --fix"
|
|
38
|
+
"lint:fix": "eslint --max-warnings 0 --fix",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"test:ui": "vitest --ui",
|
|
41
|
+
"test:run": "vitest run",
|
|
42
|
+
"test:coverage": "vitest run --coverage"
|
|
40
43
|
},
|
|
41
44
|
"devDependencies": {
|
|
42
45
|
"@eslint/js": "^9.38.0",
|
|
@@ -101,7 +104,7 @@
|
|
|
101
104
|
"vaul": "^1.1.2"
|
|
102
105
|
},
|
|
103
106
|
"peerDependencies": {
|
|
104
|
-
"lucide-react": "^0.
|
|
107
|
+
"lucide-react": "^0.x",
|
|
105
108
|
"date-fns": "^4.x",
|
|
106
109
|
"react": "^19.x",
|
|
107
110
|
"react-dom": "^19.x",
|