@gardenfi/garden-book 0.2.3-beta.0 → 0.2.3-beta.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/dist/components/atoms/Icons/EncryptedIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/Rotate360Icon.d.ts +5 -0
- package/dist/components/atoms/Icons/RoutingIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/index.d.ts +3 -0
- package/dist/components/organisms/Footer/Footer.d.ts +2 -0
- package/dist/components/organisms/Footer/Footer.stories.d.ts +2 -0
- package/dist/components/organisms/Footer/FooterBackgroundAnimation.d.ts +2 -1
- package/dist/components/organisms/Footer/FooterLink.d.ts +1 -0
- package/dist/ui.cjs.js +10 -10
- package/dist/ui.es.js +769 -685
- package/dist/ui.umd.js +10 -10
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gardenfi/garden-book",
|
|
3
|
-
"version": "0.2.3-beta.
|
|
3
|
+
"version": "0.2.3-beta.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "vite",
|
|
10
|
+
"build": "vite build",
|
|
11
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
12
|
+
"storybook": "storybook dev -p 6006",
|
|
13
|
+
"build-storybook": "storybook build",
|
|
14
|
+
"publish:beta": "npm publish --tag beta --access public"
|
|
15
|
+
},
|
|
8
16
|
"exports": {
|
|
9
17
|
".": {
|
|
10
18
|
"types": "./dist/index.d.ts",
|
|
@@ -20,13 +28,6 @@
|
|
|
20
28
|
"files": [
|
|
21
29
|
"dist"
|
|
22
30
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"dev": "vite",
|
|
25
|
-
"build": "vite build",
|
|
26
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
27
|
-
"storybook": "storybook dev -p 6006",
|
|
28
|
-
"build-storybook": "storybook build"
|
|
29
|
-
},
|
|
30
31
|
"peerDependencies": {
|
|
31
32
|
"react": "^18.2.0",
|
|
32
33
|
"react-dom": "^18.2.0"
|
|
@@ -74,4 +75,4 @@
|
|
|
74
75
|
"publishConfig": {
|
|
75
76
|
"access": "public"
|
|
76
77
|
}
|
|
77
|
-
}
|
|
78
|
+
}
|