@mbao01/ui 0.1.58 → 0.2.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/package.json +52 -48
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbao01/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Ayomide Bakare",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"build": "tsc && vite build",
|
|
34
34
|
"build-storybook": "storybook build -o ../../docs/storybook/ui",
|
|
35
35
|
"postbuild-storybook": "cp -R ../../docs/storybook/ui/* ../../docs/storybook/ && rm -rf ../../docs/storybook/ui",
|
|
36
|
-
"lint": "eslint
|
|
36
|
+
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
|
|
37
37
|
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
|
|
38
38
|
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
39
39
|
"preview": "vite preview",
|
|
@@ -48,62 +48,66 @@
|
|
|
48
48
|
"test:watch": "vitest"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@mbao01/common": "^0.0
|
|
51
|
+
"@mbao01/common": "^0.1.0",
|
|
52
52
|
"clsx": "^2.1.1",
|
|
53
|
-
"lucide-react": "^0.
|
|
53
|
+
"lucide-react": "^0.469.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@storybook/addon-
|
|
59
|
-
"@storybook/addon-
|
|
60
|
-
"@storybook/addon-
|
|
61
|
-
"@storybook/addon-
|
|
62
|
-
"@storybook/addon-
|
|
63
|
-
"@storybook/addon-
|
|
64
|
-
"@storybook/addon-
|
|
65
|
-
"@storybook/addon-
|
|
66
|
-
"@storybook/
|
|
67
|
-
"@storybook/
|
|
68
|
-
"@storybook/react
|
|
69
|
-
"@storybook/
|
|
70
|
-
"@storybook/test
|
|
71
|
-
"@
|
|
72
|
-
"@testing-library/
|
|
56
|
+
"@eslint/js": "^9.17.0",
|
|
57
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
|
|
58
|
+
"@storybook/addon-a11y": "^8.4.7",
|
|
59
|
+
"@storybook/addon-coverage": "^1.0.5",
|
|
60
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
61
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
62
|
+
"@storybook/addon-links": "^8.4.7",
|
|
63
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
64
|
+
"@storybook/addon-storysource": "^8.4.7",
|
|
65
|
+
"@storybook/addon-themes": "^8.4.7",
|
|
66
|
+
"@storybook/addon-viewport": "^8.4.7",
|
|
67
|
+
"@storybook/blocks": "^8.4.7",
|
|
68
|
+
"@storybook/react": "^8.4.7",
|
|
69
|
+
"@storybook/react-vite": "^8.4.7",
|
|
70
|
+
"@storybook/test": "^8.4.7",
|
|
71
|
+
"@storybook/test-runner": "^0.21.0",
|
|
72
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
73
|
+
"@testing-library/react": "^16.1.0",
|
|
73
74
|
"@testing-library/user-event": "^14.5.2",
|
|
75
|
+
"@types/eslint__js": "^8.42.3",
|
|
74
76
|
"@types/jest-image-snapshot": "^6.4.0",
|
|
75
|
-
"@types/node": "^22.
|
|
76
|
-
"@types/react": "^
|
|
77
|
-
"@types/react-dom": "^
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
79
|
-
"@typescript-eslint/parser": "^8.
|
|
80
|
-
"@vitejs/plugin-react": "^4.3.
|
|
81
|
-
"@vitest/coverage-v8": "^2.1.
|
|
82
|
-
"@vitest/ui": "^2.1.
|
|
77
|
+
"@types/node": "^22.10.2",
|
|
78
|
+
"@types/react": "^19.0.2",
|
|
79
|
+
"@types/react-dom": "^19.0.2",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
81
|
+
"@typescript-eslint/parser": "^8.18.2",
|
|
82
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
83
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
84
|
+
"@vitest/ui": "^2.1.8",
|
|
83
85
|
"axe-playwright": "^2.0.3",
|
|
84
|
-
"eslint": "^
|
|
85
|
-
"eslint-plugin-react": "^7.37.
|
|
86
|
-
"eslint-plugin-react-hooks": "^
|
|
87
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
88
|
-
"eslint-plugin-storybook": "^0.
|
|
86
|
+
"eslint": "^9.17.0",
|
|
87
|
+
"eslint-plugin-react": "^7.37.3",
|
|
88
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
89
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
90
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
91
|
+
"globals": "^15.14.0",
|
|
89
92
|
"jest-image-snapshot": "^6.4.0",
|
|
90
93
|
"jsdom": "^25.0.1",
|
|
91
94
|
"path": "^0.12.7",
|
|
92
|
-
"postcss": "^8.4.
|
|
93
|
-
"prettier": "^3.
|
|
94
|
-
"react": "^
|
|
95
|
-
"react-dom": "^
|
|
96
|
-
"react-router-dom": "^
|
|
97
|
-
"storybook": "^8.
|
|
98
|
-
"storybook-addon-remix-react-router": "^3.0.
|
|
99
|
-
"tailwindcss": "^3.4.
|
|
100
|
-
"typescript": "^5.
|
|
101
|
-
"
|
|
102
|
-
"vite
|
|
103
|
-
"
|
|
95
|
+
"postcss": "^8.4.49",
|
|
96
|
+
"prettier": "^3.4.2",
|
|
97
|
+
"react": "^19.0.0",
|
|
98
|
+
"react-dom": "^19.0.0",
|
|
99
|
+
"react-router-dom": "^7.1.1",
|
|
100
|
+
"storybook": "^8.4.7",
|
|
101
|
+
"storybook-addon-remix-react-router": "^3.0.2",
|
|
102
|
+
"tailwindcss": "^3.4.17",
|
|
103
|
+
"typescript": "^5.7.2",
|
|
104
|
+
"typescript-eslint": "^8.18.2",
|
|
105
|
+
"vite": "^6.0.6",
|
|
106
|
+
"vite-plugin-dts": "^4.4.0",
|
|
107
|
+
"vitest": "^2.1.8"
|
|
104
108
|
},
|
|
105
109
|
"peerDependencies": {
|
|
106
|
-
"react-router-dom": "^
|
|
110
|
+
"react-router-dom": "^7.1.1"
|
|
107
111
|
},
|
|
108
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "ff5cee34c88f8622c5c748163a8f7c3f9aeda72d"
|
|
109
113
|
}
|