@jameskyeong/uix 0.1.6 → 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/index.cjs +1 -1
- package/dist/index.d.ts +159 -0
- package/dist/index.js +1738 -439
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jameskyeong/uix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "React UI component library with warm, elegant design system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -25,12 +25,13 @@
|
|
|
25
25
|
"dist/cli"
|
|
26
26
|
],
|
|
27
27
|
"scripts": {
|
|
28
|
-
"dev": "vite --port 9999 --open",
|
|
28
|
+
"dev": "pnpm generate:versions && vite --port 9999 --open",
|
|
29
29
|
"build": "vite build --mode lib && pnpm build:css && pnpm build:cli",
|
|
30
30
|
"build:lib": "vite build --mode lib",
|
|
31
31
|
"build:css": "cp src/styles/theme.css dist/styles.css",
|
|
32
32
|
"build:cli": "tsc -p tsconfig.cli.json && cp -r src/cli/themes dist/cli/",
|
|
33
|
-
"build:showcase": "vite build",
|
|
33
|
+
"build:showcase": "pnpm generate:versions && vite build",
|
|
34
|
+
"generate:versions": "node scripts/generate-versions.js",
|
|
34
35
|
"preview": "vite preview",
|
|
35
36
|
"typecheck": "tsc --noEmit",
|
|
36
37
|
"lint": "biome check src showcase",
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
"react": ">=18",
|
|
51
52
|
"react-dom": ">=18",
|
|
52
53
|
"shiki": ">=1",
|
|
54
|
+
"sonner": ">=2",
|
|
53
55
|
"tailwind-merge": ">=2",
|
|
54
56
|
"tailwindcss": ">=4"
|
|
55
57
|
},
|
|
@@ -72,6 +74,7 @@
|
|
|
72
74
|
"react-dom": "^19.2.3",
|
|
73
75
|
"react-router-dom": "^7.11.0",
|
|
74
76
|
"shiki": "^3.20.0",
|
|
77
|
+
"sonner": "^2.0.7",
|
|
75
78
|
"tailwind-merge": "^3.4.0",
|
|
76
79
|
"tailwindcss": "^4",
|
|
77
80
|
"typescript": "^5",
|