unifyedx-storybook-new 0.1.20 → 0.1.21
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 +6 -0
- package/dist/apiEndpoints.es.js +14 -0
- package/dist/apiEndpoints.es.js.map +1 -0
- package/dist/unifyedx-storybook-new.es.js +23662 -42758
- package/dist/unifyedx-storybook-new.es.js.map +1 -1
- package/package.json +22 -23
- /package/dist/{unifyedx-storybook-new.css → main.css} +0 -0
package/package.json
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unifyedx-storybook-new",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.21",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "dist/unifyedx-storybook-new.es.js",
|
|
7
|
-
"module": "dist/unifyedx-storybook-new.es.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"style": "dist/unifyedx-storybook-new.css",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist"
|
|
12
|
-
],
|
|
13
6
|
"description": "A modern, accessible React component library powered by Storybook and Vite.",
|
|
14
7
|
"author": {
|
|
15
8
|
"name": "Rajesh Kumar",
|
|
@@ -35,17 +28,32 @@
|
|
|
35
28
|
"ui",
|
|
36
29
|
"accessible"
|
|
37
30
|
],
|
|
31
|
+
"main": "dist/unifyedx-storybook-new.es.js",
|
|
32
|
+
"module": "dist/unifyedx-storybook-new.es.js",
|
|
33
|
+
"types": "dist/index.d.ts",
|
|
34
|
+
"style": "dist/main.css",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
38
|
"exports": {
|
|
39
39
|
".": {
|
|
40
|
-
"import": "./dist/unifyedx-storybook-new.es.js"
|
|
41
|
-
"types": "./dist/index.d.ts"
|
|
40
|
+
"import": "./dist/unifyedx-storybook-new.es.js"
|
|
42
41
|
},
|
|
43
|
-
"./style.css": "./dist/
|
|
44
|
-
"./dist/
|
|
45
|
-
"./package.json": "./package.json",
|
|
42
|
+
"./style.css": "./dist/main.css",
|
|
43
|
+
"./dist/main.css": "./dist/main.css",
|
|
46
44
|
"./api": {
|
|
47
45
|
"import": "./dist/apiEndpoints.es.js"
|
|
48
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"./package.json": "./package.json"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"dev": "storybook dev -p 6006",
|
|
51
|
+
"build": "rm -rf dist && vite build",
|
|
52
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
53
|
+
"lint": "eslint .",
|
|
54
|
+
"preview": "vite preview",
|
|
55
|
+
"storybook": "storybook dev -p 6006",
|
|
56
|
+
"build-storybook": "storybook build"
|
|
49
57
|
},
|
|
50
58
|
"peerDependencies": {
|
|
51
59
|
"react": ">=18",
|
|
@@ -102,14 +110,5 @@
|
|
|
102
110
|
"typescript": "^5.6.3",
|
|
103
111
|
"vite": "^7.0.4",
|
|
104
112
|
"vitest": "^3.2.4"
|
|
105
|
-
},
|
|
106
|
-
"scripts": {
|
|
107
|
-
"dev": "storybook dev -p 6006",
|
|
108
|
-
"build": "vite build",
|
|
109
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
110
|
-
"lint": "eslint .",
|
|
111
|
-
"preview": "vite preview",
|
|
112
|
-
"storybook": "storybook dev -p 6006",
|
|
113
|
-
"build-storybook": "storybook build"
|
|
114
113
|
}
|
|
115
114
|
}
|
|
File without changes
|