@zvoove/unity-ui 2.33.1 → 2.34.0
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/bin/cli.mjs +51 -0
- package/dist/theme.css +17 -0
- package/dist/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.css +1 -1
- package/dist/unity-ui.d.ts +26 -4
- package/dist/unity-ui.es.js +42 -41
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvoove/unity-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.34.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/zvoove-org/unity-ui.git"
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
45
45
|
"create": "node bin/cli.mjs create --",
|
|
46
46
|
"commit": "cz",
|
|
47
|
-
"generate-skills": "node bin/cli.mjs skills"
|
|
47
|
+
"generate-skills": "node bin/cli.mjs skills",
|
|
48
|
+
"profile:designer": "cp profiles/designer.md CLAUDE.active.md && cp profiles/designer.md AGENTS.md && echo '\\n ✅ Switched to designer profile\\n'",
|
|
49
|
+
"profile:developer": "cp profiles/developer.md CLAUDE.active.md && cp profiles/developer.md AGENTS.md && echo '\\n ✅ Switched to developer profile\\n'"
|
|
48
50
|
},
|
|
49
51
|
"peerDependencies": {
|
|
50
52
|
"react": ">=18.0.0",
|
|
@@ -61,6 +63,7 @@
|
|
|
61
63
|
"@storybook/addon-a11y": "^10.4.2",
|
|
62
64
|
"@storybook/addon-docs": "^10.4.2",
|
|
63
65
|
"@storybook/addon-links": "^10.4.2",
|
|
66
|
+
"@storybook/addon-mcp": "^0.6.0",
|
|
64
67
|
"@storybook/addon-themes": "^10.4.2",
|
|
65
68
|
"@storybook/react-vite": "^10.4.2",
|
|
66
69
|
"@tailwindcss/postcss": "^4.3.0",
|
|
@@ -101,7 +104,10 @@
|
|
|
101
104
|
"prettier": "^3.8.1",
|
|
102
105
|
"react": "^19.2.4",
|
|
103
106
|
"react-dom": "^19.2.4",
|
|
107
|
+
"react-markdown": "^10.1.0",
|
|
104
108
|
"react-syntax-highlighter": "^16.1.1",
|
|
109
|
+
"rehype-sanitize": "^6.0.0",
|
|
110
|
+
"remark-gfm": "^4.0.1",
|
|
105
111
|
"resize-observer-polyfill": "^1.5.1",
|
|
106
112
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
107
113
|
"storybook": "^10.4.2",
|