@zvoove/unity-ui 2.19.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/package.json ADDED
@@ -0,0 +1,116 @@
1
+ {
2
+ "name": "@zvoove/unity-ui",
3
+ "version": "2.19.1",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+ssh://git@github.com/zvoove-org/unity-ui.git"
7
+ },
8
+ "license": "ISC",
9
+ "main": "dist/unity-ui.cjs.js",
10
+ "module": "dist/unity-ui.es.js",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/unity-ui.d.ts",
14
+ "import": "./dist/unity-ui.es.js",
15
+ "require": "./dist/unity-ui.cjs.js"
16
+ },
17
+ "./theme.css": "./dist/theme.css",
18
+ "./unity-ui.css": "./dist/unity-ui.css"
19
+ },
20
+ "type": "module",
21
+ "files": [
22
+ "dist",
23
+ "!**/*.test.*",
24
+ "!**/*.stories.*",
25
+ "!docs",
26
+ "!**/*.mdx",
27
+ "!**/*.md"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsc && vite build",
31
+ "test": "vitest",
32
+ "storybook": "cross-env VITE_CJS_IGNORE_WARNING=true storybook dev -p 6006",
33
+ "build-storybook": "storybook build",
34
+ "prepare": "husky",
35
+ "lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
36
+ "create": "node scripts/create-component.mjs --",
37
+ "commit": "cz"
38
+ },
39
+ "peerDependencies": {
40
+ "react": ">=18.0.0",
41
+ "react-dom": ">=18.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@chromatic-com/storybook": "^5.0.1",
45
+ "@commitlint/cli": "^20.2.0",
46
+ "@commitlint/config-conventional": "^20.2.0",
47
+ "@eslint/compat": "^2.0.0",
48
+ "@eslint/eslintrc": "^3.3.3",
49
+ "@eslint/js": "^9.30.0",
50
+ "@phosphor-icons/react": "^2.1.10",
51
+ "@storybook/addon-a11y": "^10.2.13",
52
+ "@storybook/addon-docs": "^10.2.13",
53
+ "@storybook/addon-links": "^10.2.13",
54
+ "@storybook/addon-themes": "^10.2.13",
55
+ "@storybook/react-vite": "^10.2.13",
56
+ "@storybook/testing-library": "^0.2.2",
57
+ "@tailwindcss/postcss": "^4.1.18",
58
+ "@tailwindcss/vite": "^4.1.18",
59
+ "@testing-library/jest-dom": "^6.9.1",
60
+ "@testing-library/react": "^16.3.2",
61
+ "@testing-library/user-event": "^14.6.1",
62
+ "@trivago/prettier-plugin-sort-imports": "^6.0.2",
63
+ "@types/enzyme": "^3.10.19",
64
+ "@types/node": "^25.0.10",
65
+ "@types/react": "^19.1.8",
66
+ "@types/react-dom": "^19.1.3",
67
+ "@typescript-eslint/eslint-plugin": "^8.53.1",
68
+ "@typescript-eslint/parser": "^8.32.1",
69
+ "@vitejs/plugin-react": "^5.1.4",
70
+ "@vitest/coverage-v8": "^4.0.18",
71
+ "@vitest/ui": "^4.0.7",
72
+ "chromatic": "^15.2.0",
73
+ "commander": "^14.0.2",
74
+ "commitizen": "^4.3.1",
75
+ "cross-env": "^10.1.0",
76
+ "cz-conventional-changelog": "^3.3.0",
77
+ "enzyme": "^3.11.0",
78
+ "eslint": "^9.39.2",
79
+ "eslint-config-prettier": "^10.1.8",
80
+ "eslint-plugin-jsx-a11y": "^6.10.2",
81
+ "eslint-plugin-prettier": "^5.5.5",
82
+ "eslint-plugin-react-hooks": "7.0.1",
83
+ "eslint-plugin-react-refresh": "^0.4.26",
84
+ "eslint-plugin-storybook": "^10.1.11",
85
+ "globals": "^17.2.0",
86
+ "husky": "^9.1.7",
87
+ "jsdom": "^27.0.0",
88
+ "prettier": "^3.6.2",
89
+ "react": "^19.1.0",
90
+ "react-dom": "^19.1.0",
91
+ "rollup-plugin-visualizer": "^6.0.5",
92
+ "storybook": "^10.2.13",
93
+ "tailwind-merge": "^3.4.0",
94
+ "tailwind-variants": "^3.2.2",
95
+ "tailwindcss": "^4.1.18",
96
+ "terser": "^5.44.1",
97
+ "typescript": "^5.9.3",
98
+ "vite": "^7.3.1",
99
+ "vite-plugin-dts": "^4.5.4",
100
+ "vite-plugin-static-copy": "^3.2.0",
101
+ "vitest": "^4.0.7",
102
+ "resize-observer-polyfill": "^1.5.1"
103
+ },
104
+ "overrides": {
105
+ "esbuild": "0.25.0",
106
+ "storybook": "$storybook"
107
+ },
108
+ "config": {
109
+ "commitizen": {
110
+ "path": "./node_modules/cz-conventional-changelog"
111
+ }
112
+ },
113
+ "optionalDependencies": {
114
+ "lightningcss-linux-x64-gnu": "^1.30.2"
115
+ }
116
+ }