@zvoove/unity-ui 2.20.1 → 2.22.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/bin/generate-skills.mjs +1916 -0
- package/dist/llms.txt +1442 -0
- package/dist/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.css +1 -1
- package/dist/unity-ui.es.js +378 -378
- package/package.json +46 -36
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvoove/unity-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.22.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/zvoove-org/unity-ui.git"
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
"require": "./dist/unity-ui.cjs.js"
|
|
16
16
|
},
|
|
17
17
|
"./theme.css": "./dist/theme.css",
|
|
18
|
-
"./unity-ui.css": "./dist/unity-ui.css"
|
|
18
|
+
"./unity-ui.css": "./dist/unity-ui.css",
|
|
19
|
+
"./llms.txt": "./dist/llms.txt"
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"unity-ui-skills": "./bin/generate-skills.mjs"
|
|
19
23
|
},
|
|
20
24
|
"type": "module",
|
|
21
25
|
"files": [
|
|
@@ -24,7 +28,8 @@
|
|
|
24
28
|
"!**/*.stories.*",
|
|
25
29
|
"!docs",
|
|
26
30
|
"!**/*.mdx",
|
|
27
|
-
"!**/*.md"
|
|
31
|
+
"!**/*.md",
|
|
32
|
+
"bin"
|
|
28
33
|
],
|
|
29
34
|
"scripts": {
|
|
30
35
|
"build": "tsc && vite build",
|
|
@@ -34,7 +39,8 @@
|
|
|
34
39
|
"prepare": "husky",
|
|
35
40
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
36
41
|
"create": "node scripts/create-component.mjs --",
|
|
37
|
-
"commit": "cz"
|
|
42
|
+
"commit": "cz",
|
|
43
|
+
"generate-skills": "node bin/generate-skills.mjs"
|
|
38
44
|
},
|
|
39
45
|
"peerDependencies": {
|
|
40
46
|
"react": ">=18.0.0",
|
|
@@ -42,58 +48,58 @@
|
|
|
42
48
|
},
|
|
43
49
|
"devDependencies": {
|
|
44
50
|
"@chromatic-com/storybook": "^5.0.1",
|
|
45
|
-
"@commitlint/cli": "^20.
|
|
46
|
-
"@commitlint/config-conventional": "^20.
|
|
47
|
-
"@eslint/compat": "^2.0.
|
|
48
|
-
"@eslint/eslintrc": "^3.3.
|
|
49
|
-
"@eslint/js": "^9.
|
|
51
|
+
"@commitlint/cli": "^20.4.3",
|
|
52
|
+
"@commitlint/config-conventional": "^20.4.3",
|
|
53
|
+
"@eslint/compat": "^2.0.3",
|
|
54
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
55
|
+
"@eslint/js": "^9.39.4",
|
|
50
56
|
"@phosphor-icons/react": "^2.1.10",
|
|
51
|
-
"@storybook/addon-a11y": "^10.2.
|
|
52
|
-
"@storybook/addon-docs": "^10.2.
|
|
53
|
-
"@storybook/addon-links": "^10.2.
|
|
54
|
-
"@storybook/addon-themes": "^10.2.
|
|
55
|
-
"@storybook/react-vite": "^10.2.
|
|
57
|
+
"@storybook/addon-a11y": "^10.2.19",
|
|
58
|
+
"@storybook/addon-docs": "^10.2.19",
|
|
59
|
+
"@storybook/addon-links": "^10.2.19",
|
|
60
|
+
"@storybook/addon-themes": "^10.2.19",
|
|
61
|
+
"@storybook/react-vite": "^10.2.19",
|
|
56
62
|
"@storybook/testing-library": "^0.2.2",
|
|
57
|
-
"@tailwindcss/postcss": "^4.1
|
|
58
|
-
"@tailwindcss/vite": "^4.1
|
|
63
|
+
"@tailwindcss/postcss": "^4.2.1",
|
|
64
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
59
65
|
"@testing-library/jest-dom": "^6.9.1",
|
|
60
66
|
"@testing-library/react": "^16.3.2",
|
|
61
67
|
"@testing-library/user-event": "^14.6.1",
|
|
62
68
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
63
69
|
"@types/enzyme": "^3.10.19",
|
|
64
|
-
"@types/node": "^25.0
|
|
65
|
-
"@types/react": "^19.
|
|
66
|
-
"@types/react-dom": "^19.
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
68
|
-
"@typescript-eslint/parser": "^8.
|
|
70
|
+
"@types/node": "^25.4.0",
|
|
71
|
+
"@types/react": "^19.2.14",
|
|
72
|
+
"@types/react-dom": "^19.2.3",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
74
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
69
75
|
"@vitejs/plugin-react": "^5.1.4",
|
|
70
76
|
"@vitest/coverage-v8": "^4.0.18",
|
|
71
77
|
"@vitest/ui": "^4.0.7",
|
|
72
78
|
"chromatic": "^15.2.0",
|
|
73
|
-
"commander": "^14.0.
|
|
79
|
+
"commander": "^14.0.3",
|
|
74
80
|
"commitizen": "^4.3.1",
|
|
75
81
|
"cross-env": "^10.1.0",
|
|
76
82
|
"cz-conventional-changelog": "^3.3.0",
|
|
77
83
|
"enzyme": "^3.11.0",
|
|
78
|
-
"eslint": "^9.39.
|
|
84
|
+
"eslint": "^9.39.4",
|
|
79
85
|
"eslint-config-prettier": "^10.1.8",
|
|
80
86
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
81
87
|
"eslint-plugin-prettier": "^5.5.5",
|
|
82
88
|
"eslint-plugin-react-hooks": "7.0.1",
|
|
83
89
|
"eslint-plugin-react-refresh": "^0.4.26",
|
|
84
|
-
"eslint-plugin-storybook": "^10.
|
|
85
|
-
"globals": "^17.
|
|
90
|
+
"eslint-plugin-storybook": "^10.2.16",
|
|
91
|
+
"globals": "^17.4.0",
|
|
86
92
|
"husky": "^9.1.7",
|
|
87
|
-
"jsdom": "^
|
|
88
|
-
"prettier": "^3.
|
|
89
|
-
"react": "^19.
|
|
90
|
-
"react-dom": "^19.
|
|
91
|
-
"rollup-plugin-visualizer": "^6.0.
|
|
92
|
-
"storybook": "^10.2.
|
|
93
|
-
"tailwind-merge": "^3.
|
|
93
|
+
"jsdom": "^28.1.0",
|
|
94
|
+
"prettier": "^3.8.1",
|
|
95
|
+
"react": "^19.2.4",
|
|
96
|
+
"react-dom": "^19.2.4",
|
|
97
|
+
"rollup-plugin-visualizer": "^6.0.11",
|
|
98
|
+
"storybook": "^10.2.19",
|
|
99
|
+
"tailwind-merge": "^3.5.0",
|
|
94
100
|
"tailwind-variants": "^3.2.2",
|
|
95
|
-
"tailwindcss": "^4.1
|
|
96
|
-
"terser": "^5.
|
|
101
|
+
"tailwindcss": "^4.2.1",
|
|
102
|
+
"terser": "^5.46.0",
|
|
97
103
|
"typescript": "^5.9.3",
|
|
98
104
|
"vite": "^7.3.1",
|
|
99
105
|
"vite-plugin-dts": "^4.5.4",
|
|
@@ -103,7 +109,11 @@
|
|
|
103
109
|
},
|
|
104
110
|
"overrides": {
|
|
105
111
|
"esbuild": "0.25.0",
|
|
106
|
-
"storybook": "$storybook"
|
|
112
|
+
"storybook": "$storybook",
|
|
113
|
+
"@microsoft/api-extractor": {
|
|
114
|
+
"minimatch": ">=10.2.3"
|
|
115
|
+
},
|
|
116
|
+
"lodash": ">=4.17.23"
|
|
107
117
|
},
|
|
108
118
|
"config": {
|
|
109
119
|
"commitizen": {
|
|
@@ -111,6 +121,6 @@
|
|
|
111
121
|
}
|
|
112
122
|
},
|
|
113
123
|
"optionalDependencies": {
|
|
114
|
-
"lightningcss-linux-x64-gnu": "^1.
|
|
124
|
+
"lightningcss-linux-x64-gnu": "^1.32.0"
|
|
115
125
|
}
|
|
116
126
|
}
|