@iris-ui-kit/vue 0.2.8 → 0.2.10
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 +30 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +30 -4
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iris-ui-kit/vue",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
4
4
|
"description": "Vue 3.5 adapter for Iris UI — full component set",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -109,13 +109,21 @@
|
|
|
109
109
|
"dist"
|
|
110
110
|
],
|
|
111
111
|
"sideEffects": false,
|
|
112
|
+
"scripts": {
|
|
113
|
+
"build": "tsup",
|
|
114
|
+
"dev": "tsup --watch",
|
|
115
|
+
"test": "vitest run",
|
|
116
|
+
"typecheck": "tsc --noEmit",
|
|
117
|
+
"lint": "eslint src",
|
|
118
|
+
"clean": "rm -rf dist .turbo"
|
|
119
|
+
},
|
|
112
120
|
"dependencies": {
|
|
113
121
|
"@floating-ui/dom": "^1.7.6",
|
|
114
|
-
"@iris-ui-kit/core": "
|
|
115
|
-
"@iris-ui-kit/
|
|
116
|
-
"@iris-ui-kit/
|
|
117
|
-
"@iris-ui-kit/theme": "
|
|
118
|
-
"@iris-ui-kit/tokens": "
|
|
122
|
+
"@iris-ui-kit/core": "workspace:*",
|
|
123
|
+
"@iris-ui-kit/icons": "workspace:*",
|
|
124
|
+
"@iris-ui-kit/skins": "workspace:*",
|
|
125
|
+
"@iris-ui-kit/theme": "workspace:*",
|
|
126
|
+
"@iris-ui-kit/tokens": "workspace:*"
|
|
119
127
|
},
|
|
120
128
|
"peerDependencies": {
|
|
121
129
|
"vue": "^3.5.0"
|
|
@@ -132,13 +140,5 @@
|
|
|
132
140
|
},
|
|
133
141
|
"publishConfig": {
|
|
134
142
|
"access": "public"
|
|
135
|
-
},
|
|
136
|
-
"scripts": {
|
|
137
|
-
"build": "tsup",
|
|
138
|
-
"dev": "tsup --watch",
|
|
139
|
-
"test": "vitest run",
|
|
140
|
-
"typecheck": "tsc --noEmit",
|
|
141
|
-
"lint": "eslint src",
|
|
142
|
-
"clean": "rm -rf dist .turbo"
|
|
143
143
|
}
|
|
144
|
-
}
|
|
144
|
+
}
|