@wakastellar/ui 0.1.4 → 0.1.6
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.js +25 -19
- package/dist/index.es.js +2657 -2604
- package/package.json +11 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wakastellar/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "UI Library compatible TweakCN + i18n pour Next.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -24,16 +24,6 @@
|
|
|
24
24
|
"dist",
|
|
25
25
|
"src/styles"
|
|
26
26
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"dev": "vite build --watch --mode development",
|
|
29
|
-
"build": "vite build",
|
|
30
|
-
"demo": "cd demo && pnpm dev",
|
|
31
|
-
"lint": "eslint . --ext .ts,.tsx",
|
|
32
|
-
"test": "vitest --config vitest.config.unit.ts",
|
|
33
|
-
"test:watch": "vitest --config vitest.config.unit.ts --watch",
|
|
34
|
-
"test:coverage": "vitest --config vitest.config.unit.ts --coverage",
|
|
35
|
-
"test:ui": "vitest --config vitest.config.unit.ts --ui"
|
|
36
|
-
},
|
|
37
27
|
"dependencies": {
|
|
38
28
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
39
29
|
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
@@ -115,10 +105,14 @@
|
|
|
115
105
|
"vite-plugin-dts": "^4.5.4",
|
|
116
106
|
"vitest": "^3.2.4"
|
|
117
107
|
},
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
108
|
+
"scripts": {
|
|
109
|
+
"dev": "vite build --watch --mode development",
|
|
110
|
+
"build": "vite build",
|
|
111
|
+
"demo": "cd demo && pnpm dev",
|
|
112
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
113
|
+
"test": "vitest --config vitest.config.unit.ts",
|
|
114
|
+
"test:watch": "vitest --config vitest.config.unit.ts --watch",
|
|
115
|
+
"test:coverage": "vitest --config vitest.config.unit.ts --coverage",
|
|
116
|
+
"test:ui": "vitest --config vitest.config.unit.ts --ui"
|
|
123
117
|
}
|
|
124
|
-
}
|
|
118
|
+
}
|