@zvoove/unity-ui 2.22.0 → 2.23.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/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 +151 -43
- package/dist/theme.css +46 -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 +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvoove/unity-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.0",
|
|
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",
|
|
@@ -62,6 +64,7 @@
|
|
|
62
64
|
"@storybook/testing-library": "^0.2.2",
|
|
63
65
|
"@tailwindcss/postcss": "^4.2.1",
|
|
64
66
|
"@tailwindcss/vite": "^4.2.1",
|
|
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",
|
|
@@ -94,6 +97,7 @@
|
|
|
94
97
|
"prettier": "^3.8.1",
|
|
95
98
|
"react": "^19.2.4",
|
|
96
99
|
"react-dom": "^19.2.4",
|
|
100
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
97
101
|
"rollup-plugin-visualizer": "^6.0.11",
|
|
98
102
|
"storybook": "^10.2.19",
|
|
99
103
|
"tailwind-merge": "^3.5.0",
|
|
@@ -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",
|