@ambuj.bhaskar/react-component-library 0.30.13 → 0.30.15
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 +34 -34
- package/bin/cli.js +86 -86
- package/dist/assets/index.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +20 -12
- package/dist/index.umd.js +9 -9
- package/package.json +106 -106
package/package.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ambuj.bhaskar/react-component-library",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.30.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist"
|
|
8
|
-
],
|
|
9
|
-
"main": "dist/index.umd.js",
|
|
10
|
-
"module": "dist/index.js",
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"description": "A React component library for building UI components",
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"import": "./dist/index.js",
|
|
16
|
-
"require": "./dist/index.cjs",
|
|
17
|
-
"default": "./dist/index.js"
|
|
18
|
-
},
|
|
19
|
-
"./style.css": "./dist/assets/index.css"
|
|
20
|
-
},
|
|
21
|
-
"bin": {
|
|
22
|
-
"awi": "bin/cli.js"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "storybook dev -p 6006",
|
|
26
|
-
"build": "tsc -b && vite build",
|
|
27
|
-
"lint": "eslint .",
|
|
28
|
-
"preview": "vite preview",
|
|
29
|
-
"start": "storybook dev -p 6006",
|
|
30
|
-
"storybook": "storybook dev -p 6006",
|
|
31
|
-
"build-storybook": "storybook build",
|
|
32
|
-
"release": "tsc -b && vite build && npm publish --access public",
|
|
33
|
-
"cli": "node ./bin/cli.js"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@hookform/resolvers": "^3.10.0",
|
|
37
|
-
"@types/leaflet-draw": "^1.0.12",
|
|
38
|
-
"antd": "^5.23.0",
|
|
39
|
-
"chart.js": "^4.4.9",
|
|
40
|
-
"clsx": "^2.1.1",
|
|
41
|
-
"crypto-js": "^4.2.0",
|
|
42
|
-
"date-fns": "^4.1.0",
|
|
43
|
-
"dayjs": "^1.11.13",
|
|
44
|
-
"leaflet": "^1.9.4",
|
|
45
|
-
"leaflet-draw": "^1.0.4",
|
|
46
|
-
"lodash": "^4.17.21",
|
|
47
|
-
"react-chartjs-2": "^5.3.0",
|
|
48
|
-
"react-draggable": "^4.4.6",
|
|
49
|
-
"react-hook-form": "^7.58.1",
|
|
50
|
-
"react-hot-keys": "^2.7.3",
|
|
51
|
-
"react-hot-toast": "^2.5.2",
|
|
52
|
-
"react-hotkeys-hook": "^5.1.0",
|
|
53
|
-
"react-leaflet": "^4.2.1",
|
|
54
|
-
"react-query": "^3.39.3",
|
|
55
|
-
"sass": "^1.89.0",
|
|
56
|
-
"sweetalert2-react-content": "^5.1.0",
|
|
57
|
-
"tinycolor2": "^1.6.0",
|
|
58
|
-
"yup": "^1.7.0"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"react": ">=18.0.0",
|
|
62
|
-
"react-dom": ">=18.0.0"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@chromatic-com/storybook": "^3.2.3",
|
|
66
|
-
"@eslint/js": "^9.17.0",
|
|
67
|
-
"@newhighsco/storybook-addon-svgr": "^2.0.39",
|
|
68
|
-
"@storybook/addon-essentials": "^8.4.7",
|
|
69
|
-
"@storybook/addon-interactions": "^8.4.7",
|
|
70
|
-
"@storybook/blocks": "^8.4.7",
|
|
71
|
-
"@storybook/manager-api": "^8.4.7",
|
|
72
|
-
"@storybook/react": "^8.4.7",
|
|
73
|
-
"@storybook/react-vite": "^8.4.7",
|
|
74
|
-
"@storybook/test": "^8.4.7",
|
|
75
|
-
"@storybook/theming": "^8.4.7",
|
|
76
|
-
"@types/crypto-js": "^4.2.2",
|
|
77
|
-
"@types/leaflet": "^1.9.18",
|
|
78
|
-
"@types/lodash": "^4.17.15",
|
|
79
|
-
"@types/react": "^18.3.18",
|
|
80
|
-
"@types/react-dom": "^18.3.5",
|
|
81
|
-
"@types/tinycolor2": "^1.4.6",
|
|
82
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
83
|
-
"boxen": "^8.0.1",
|
|
84
|
-
"chalk": "^5.4.1",
|
|
85
|
-
"commander": "^11.0.0",
|
|
86
|
-
"eslint": "^9.17.0",
|
|
87
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
88
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
89
|
-
"eslint-plugin-storybook": "^0.11.1",
|
|
90
|
-
"globals": "^15.14.0",
|
|
91
|
-
"sass-embedded": "^1.89.0",
|
|
92
|
-
"storybook": "^8.4.7",
|
|
93
|
-
"typescript": "~5.6.2",
|
|
94
|
-
"typescript-eslint": "^8.18.2",
|
|
95
|
-
"vite": "^6.0.5",
|
|
96
|
-
"vite-plugin-dts": "^4.4.0",
|
|
97
|
-
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
98
|
-
"vite-plugin-svgr": "^4.3.0",
|
|
99
|
-
"vite-tsconfig-paths": "^5.1.4"
|
|
100
|
-
},
|
|
101
|
-
"eslintConfig": {
|
|
102
|
-
"extends": [
|
|
103
|
-
"plugin:storybook/recommended"
|
|
104
|
-
]
|
|
105
|
-
}
|
|
106
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ambuj.bhaskar/react-component-library",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.30.15",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.umd.js",
|
|
10
|
+
"module": "dist/index.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"description": "A React component library for building UI components",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/index.cjs",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./style.css": "./dist/assets/index.css"
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"awi": "bin/cli.js"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "storybook dev -p 6006",
|
|
26
|
+
"build": "tsc -b && vite build",
|
|
27
|
+
"lint": "eslint .",
|
|
28
|
+
"preview": "vite preview",
|
|
29
|
+
"start": "storybook dev -p 6006",
|
|
30
|
+
"storybook": "storybook dev -p 6006",
|
|
31
|
+
"build-storybook": "storybook build",
|
|
32
|
+
"release": "tsc -b && vite build && npm publish --access public",
|
|
33
|
+
"cli": "node ./bin/cli.js"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@hookform/resolvers": "^3.10.0",
|
|
37
|
+
"@types/leaflet-draw": "^1.0.12",
|
|
38
|
+
"antd": "^5.23.0",
|
|
39
|
+
"chart.js": "^4.4.9",
|
|
40
|
+
"clsx": "^2.1.1",
|
|
41
|
+
"crypto-js": "^4.2.0",
|
|
42
|
+
"date-fns": "^4.1.0",
|
|
43
|
+
"dayjs": "^1.11.13",
|
|
44
|
+
"leaflet": "^1.9.4",
|
|
45
|
+
"leaflet-draw": "^1.0.4",
|
|
46
|
+
"lodash": "^4.17.21",
|
|
47
|
+
"react-chartjs-2": "^5.3.0",
|
|
48
|
+
"react-draggable": "^4.4.6",
|
|
49
|
+
"react-hook-form": "^7.58.1",
|
|
50
|
+
"react-hot-keys": "^2.7.3",
|
|
51
|
+
"react-hot-toast": "^2.5.2",
|
|
52
|
+
"react-hotkeys-hook": "^5.1.0",
|
|
53
|
+
"react-leaflet": "^4.2.1",
|
|
54
|
+
"react-query": "^3.39.3",
|
|
55
|
+
"sass": "^1.89.0",
|
|
56
|
+
"sweetalert2-react-content": "^5.1.0",
|
|
57
|
+
"tinycolor2": "^1.6.0",
|
|
58
|
+
"yup": "^1.7.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": ">=18.0.0",
|
|
62
|
+
"react-dom": ">=18.0.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@chromatic-com/storybook": "^3.2.3",
|
|
66
|
+
"@eslint/js": "^9.17.0",
|
|
67
|
+
"@newhighsco/storybook-addon-svgr": "^2.0.39",
|
|
68
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
69
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
70
|
+
"@storybook/blocks": "^8.4.7",
|
|
71
|
+
"@storybook/manager-api": "^8.4.7",
|
|
72
|
+
"@storybook/react": "^8.4.7",
|
|
73
|
+
"@storybook/react-vite": "^8.4.7",
|
|
74
|
+
"@storybook/test": "^8.4.7",
|
|
75
|
+
"@storybook/theming": "^8.4.7",
|
|
76
|
+
"@types/crypto-js": "^4.2.2",
|
|
77
|
+
"@types/leaflet": "^1.9.18",
|
|
78
|
+
"@types/lodash": "^4.17.15",
|
|
79
|
+
"@types/react": "^18.3.18",
|
|
80
|
+
"@types/react-dom": "^18.3.5",
|
|
81
|
+
"@types/tinycolor2": "^1.4.6",
|
|
82
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
83
|
+
"boxen": "^8.0.1",
|
|
84
|
+
"chalk": "^5.4.1",
|
|
85
|
+
"commander": "^11.0.0",
|
|
86
|
+
"eslint": "^9.17.0",
|
|
87
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
88
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
89
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
90
|
+
"globals": "^15.14.0",
|
|
91
|
+
"sass-embedded": "^1.89.0",
|
|
92
|
+
"storybook": "^8.4.7",
|
|
93
|
+
"typescript": "~5.6.2",
|
|
94
|
+
"typescript-eslint": "^8.18.2",
|
|
95
|
+
"vite": "^6.0.5",
|
|
96
|
+
"vite-plugin-dts": "^4.4.0",
|
|
97
|
+
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
98
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
99
|
+
"vite-tsconfig-paths": "^5.1.4"
|
|
100
|
+
},
|
|
101
|
+
"eslintConfig": {
|
|
102
|
+
"extends": [
|
|
103
|
+
"plugin:storybook/recommended"
|
|
104
|
+
]
|
|
105
|
+
}
|
|
106
|
+
}
|