@woovi/ui 6.9.6 → 6.9.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/README.md +37 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +8 -13
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@woovi/ui",
|
|
3
3
|
"description": "Woovi UI component library",
|
|
4
|
-
"version": "6.9.
|
|
5
|
-
"packageManager": "pnpm@10.28.1",
|
|
4
|
+
"version": "6.9.7",
|
|
6
5
|
"author": "Woovi",
|
|
7
6
|
"dependencies": {
|
|
8
7
|
"@emotion/react": "^11.14.0",
|
|
@@ -144,6 +143,9 @@
|
|
|
144
143
|
"url": "https://github.com/entria/woovi-ui",
|
|
145
144
|
"type": "git"
|
|
146
145
|
},
|
|
146
|
+
"sideEffects": false,
|
|
147
|
+
"type": "module",
|
|
148
|
+
"types": "./dist/index.d.ts",
|
|
147
149
|
"scripts": {
|
|
148
150
|
"changelo:major": "pnpm n ./scripts/release/changelog.ts --major",
|
|
149
151
|
"changelo:minor": "pnpm n ./scripts/release/changelog.ts --minor",
|
|
@@ -171,15 +173,8 @@
|
|
|
171
173
|
"storybook": "turbo run docs:dev",
|
|
172
174
|
"storybook:build": "turbo run docs:build",
|
|
173
175
|
"updateRelease": "woovi-update-release",
|
|
174
|
-
"firstRelease": "woovi-first-release"
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"@types/react": "18.3.12",
|
|
179
|
-
"@types/react-dom": "18.3.0"
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"sideEffects": false,
|
|
183
|
-
"type": "module",
|
|
184
|
-
"types": "./dist/index.d.ts"
|
|
176
|
+
"firstRelease": "woovi-first-release",
|
|
177
|
+
"publish:npm": "./release/publish-npm.sh",
|
|
178
|
+
"publish:verdaccio": "./release/publish-verdaccio.sh"
|
|
179
|
+
}
|
|
185
180
|
}
|