@mohammadsalman/storybook-custom-ui 1.0.4 → 1.0.5
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/dist/index.d.ts +1 -0
- package/package.json +34 -23
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
package/package.json
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mohammadsalman/storybook-custom-ui",
|
|
3
3
|
"description": "A minimal React TypeScript component library with Button component and useFormInput hook",
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
"version": "1.0.5",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.esm.js",
|
|
11
|
+
"require": "./dist/index.cjs.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./dist/index.css": "./dist/index.css"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"react",
|
|
21
|
+
"typescript",
|
|
22
|
+
"components",
|
|
23
|
+
"storybook"
|
|
24
|
+
],
|
|
12
25
|
"author": "Mohammad Salman <mohammadsalman71993@gmail.com>",
|
|
13
26
|
"license": "MIT",
|
|
14
27
|
"repository": {
|
|
@@ -24,41 +37,39 @@
|
|
|
24
37
|
"storybook": "storybook dev -p 6006",
|
|
25
38
|
"build-storybook": "storybook build"
|
|
26
39
|
},
|
|
27
|
-
|
|
28
40
|
"peerDependencies": {
|
|
29
41
|
"react": "^19.2.0",
|
|
30
42
|
"react-dom": "^19.2.0"
|
|
31
43
|
},
|
|
32
|
-
|
|
33
44
|
"dependencies": {
|
|
34
45
|
"react": "^19.2.0",
|
|
35
46
|
"react-dom": "^19.2.0"
|
|
36
47
|
},
|
|
37
|
-
|
|
38
48
|
"devDependencies": {
|
|
49
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
39
50
|
"@eslint/js": "^9.39.1",
|
|
51
|
+
"@storybook/addon-a11y": "^10.1.11",
|
|
52
|
+
"@storybook/addon-docs": "^10.1.11",
|
|
53
|
+
"@storybook/addon-onboarding": "^10.1.11",
|
|
54
|
+
"@storybook/addon-vitest": "^10.1.11",
|
|
55
|
+
"@storybook/react-vite": "^10.1.11",
|
|
40
56
|
"@types/node": "^24.10.1",
|
|
41
57
|
"@types/react": "^19.2.5",
|
|
42
58
|
"@types/react-dom": "^19.2.3",
|
|
43
59
|
"@vitejs/plugin-react": "^5.1.1",
|
|
60
|
+
"@vitest/browser-playwright": "^4.0.17",
|
|
61
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
44
62
|
"eslint": "^9.39.1",
|
|
45
63
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
46
64
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
65
|
+
"eslint-plugin-storybook": "^10.1.11",
|
|
47
66
|
"globals": "^16.5.0",
|
|
67
|
+
"playwright": "^1.57.0",
|
|
68
|
+
"storybook": "^10.1.11",
|
|
48
69
|
"typescript": "~5.9.3",
|
|
49
70
|
"typescript-eslint": "^8.46.4",
|
|
50
71
|
"vite": "^7.2.4",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"@chromatic-com/storybook": "^5.0.0",
|
|
54
|
-
"@storybook/addon-vitest": "^10.1.11",
|
|
55
|
-
"@storybook/addon-a11y": "^10.1.11",
|
|
56
|
-
"@storybook/addon-docs": "^10.1.11",
|
|
57
|
-
"@storybook/addon-onboarding": "^10.1.11",
|
|
58
|
-
"eslint-plugin-storybook": "^10.1.11",
|
|
59
|
-
"vitest": "^4.0.17",
|
|
60
|
-
"playwright": "^1.57.0",
|
|
61
|
-
"@vitest/browser-playwright": "^4.0.17",
|
|
62
|
-
"@vitest/coverage-v8": "^4.0.17"
|
|
72
|
+
"vite-plugin-dts": "^4.5.4",
|
|
73
|
+
"vitest": "^4.0.17"
|
|
63
74
|
}
|
|
64
75
|
}
|