@zvoove/unity-ui 2.22.1 → 2.23.1
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 +8 -76
- package/bin/cli.mjs +49 -0
- package/bin/commands/config.mjs +68 -0
- package/bin/commands/create.mjs +163 -0
- package/bin/commands/init.mjs +158 -0
- package/bin/commands/rules.mjs +100 -0
- package/bin/commands/skills.mjs +1883 -0
- package/bin/generate-skills.mjs +19 -1903
- package/bin/templates/component.tsx +15 -0
- package/bin/templates/doc.mdx +36 -0
- package/bin/templates/index.ts +2 -0
- package/bin/templates/stories.tsx +15 -0
- package/bin/templates/styled.ts +14 -0
- package/bin/templates/test.tsx +30 -0
- package/bin/templates/types.ts +13 -0
- package/dist/llms.txt +150 -43
- package/dist/theme.css +44 -0
- package/dist/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.css +1 -1
- package/dist/unity-ui.d.ts +575 -24
- package/dist/unity-ui.es.js +762 -389
- package/package.json +20 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvoove/unity-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/zvoove-org/unity-ui.git"
|
|
@@ -16,9 +16,11 @@
|
|
|
16
16
|
},
|
|
17
17
|
"./theme.css": "./dist/theme.css",
|
|
18
18
|
"./unity-ui.css": "./dist/unity-ui.css",
|
|
19
|
-
"./llms.txt": "./dist/llms.txt"
|
|
19
|
+
"./llms.txt": "./dist/llms.txt",
|
|
20
|
+
"./config": "./src/config.ts"
|
|
20
21
|
},
|
|
21
22
|
"bin": {
|
|
23
|
+
"unity-ui": "./bin/cli.mjs",
|
|
22
24
|
"unity-ui-skills": "./bin/generate-skills.mjs"
|
|
23
25
|
},
|
|
24
26
|
"type": "module",
|
|
@@ -38,9 +40,9 @@
|
|
|
38
40
|
"build-storybook": "storybook build",
|
|
39
41
|
"prepare": "husky",
|
|
40
42
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
41
|
-
"create": "node
|
|
43
|
+
"create": "node bin/cli.mjs create --",
|
|
42
44
|
"commit": "cz",
|
|
43
|
-
"generate-skills": "node bin/
|
|
45
|
+
"generate-skills": "node bin/cli.mjs skills"
|
|
44
46
|
},
|
|
45
47
|
"peerDependencies": {
|
|
46
48
|
"react": ">=18.0.0",
|
|
@@ -49,25 +51,26 @@
|
|
|
49
51
|
"devDependencies": {
|
|
50
52
|
"@chromatic-com/storybook": "^5.0.1",
|
|
51
53
|
"@commitlint/cli": "^20.4.3",
|
|
52
|
-
"@commitlint/config-conventional": "^20.
|
|
54
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
53
55
|
"@eslint/compat": "^2.0.3",
|
|
54
56
|
"@eslint/eslintrc": "^3.3.5",
|
|
55
57
|
"@eslint/js": "^9.39.4",
|
|
56
58
|
"@phosphor-icons/react": "^2.1.10",
|
|
57
|
-
"@storybook/addon-a11y": "^10.
|
|
58
|
-
"@storybook/addon-docs": "^10.
|
|
59
|
-
"@storybook/addon-links": "^10.
|
|
60
|
-
"@storybook/addon-themes": "^10.
|
|
61
|
-
"@storybook/react-vite": "^10.
|
|
59
|
+
"@storybook/addon-a11y": "^10.3.3",
|
|
60
|
+
"@storybook/addon-docs": "^10.3.3",
|
|
61
|
+
"@storybook/addon-links": "^10.3.3",
|
|
62
|
+
"@storybook/addon-themes": "^10.3.3",
|
|
63
|
+
"@storybook/react-vite": "^10.3.3",
|
|
62
64
|
"@storybook/testing-library": "^0.2.2",
|
|
63
65
|
"@tailwindcss/postcss": "^4.2.1",
|
|
64
|
-
"@tailwindcss/vite": "^4.2.
|
|
66
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
67
|
+
"@testing-library/dom": "^10.4.1",
|
|
65
68
|
"@testing-library/jest-dom": "^6.9.1",
|
|
66
69
|
"@testing-library/react": "^16.3.2",
|
|
67
70
|
"@testing-library/user-event": "^14.6.1",
|
|
68
71
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
69
72
|
"@types/enzyme": "^3.10.19",
|
|
70
|
-
"@types/node": "^25.
|
|
73
|
+
"@types/node": "^25.5.0",
|
|
71
74
|
"@types/react": "^19.2.14",
|
|
72
75
|
"@types/react-dom": "^19.2.3",
|
|
73
76
|
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
@@ -75,7 +78,7 @@
|
|
|
75
78
|
"@vitejs/plugin-react": "^5.1.4",
|
|
76
79
|
"@vitest/coverage-v8": "^4.0.18",
|
|
77
80
|
"@vitest/ui": "^4.0.7",
|
|
78
|
-
"chromatic": "^
|
|
81
|
+
"chromatic": "^16.0.0",
|
|
79
82
|
"commander": "^14.0.3",
|
|
80
83
|
"commitizen": "^4.3.1",
|
|
81
84
|
"cross-env": "^10.1.0",
|
|
@@ -94,8 +97,9 @@
|
|
|
94
97
|
"prettier": "^3.8.1",
|
|
95
98
|
"react": "^19.2.4",
|
|
96
99
|
"react-dom": "^19.2.4",
|
|
97
|
-
"
|
|
98
|
-
"
|
|
100
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
101
|
+
"rollup-plugin-visualizer": "^7.0.1",
|
|
102
|
+
"storybook": "^10.3.3",
|
|
99
103
|
"tailwind-merge": "^3.5.0",
|
|
100
104
|
"tailwind-variants": "^3.2.2",
|
|
101
105
|
"tailwindcss": "^4.2.1",
|
|
@@ -104,8 +108,7 @@
|
|
|
104
108
|
"vite": "^7.3.1",
|
|
105
109
|
"vite-plugin-dts": "^4.5.4",
|
|
106
110
|
"vite-plugin-static-copy": "^3.2.0",
|
|
107
|
-
"vitest": "^4.0.7"
|
|
108
|
-
"resize-observer-polyfill": "^1.5.1"
|
|
111
|
+
"vitest": "^4.0.7"
|
|
109
112
|
},
|
|
110
113
|
"overrides": {
|
|
111
114
|
"esbuild": "0.25.0",
|