swipeon-react 0.0.1-alpha.3 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +18 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swipeon-react",
3
- "version": "0.0.1-alpha.3",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "A high-performance React swipe card library with smooth animations and multi-directional swipe support",
6
6
  "main": "dist/index.js",
@@ -26,7 +26,9 @@
26
26
  "prebuild": "npm run clean",
27
27
  "publish:alpha": "npm version prerelease --preid=alpha && npm run build && npm publish --tag alpha",
28
28
  "publish:rc": "npm version prerelease --preid=rc && npm run build && npm publish --tag next",
29
- "publish:stable": "npm version patch && npm run build && npm publish --tag latest"
29
+ "publish:stable": "npm version patch && npm run build && npm publish --tag latest",
30
+ "storybook": "storybook dev -p 6006",
31
+ "build-storybook": "storybook build"
30
32
  },
31
33
  "keywords": [
32
34
  "react",
@@ -44,17 +46,29 @@
44
46
  "type": "git",
45
47
  "url": "https://github.com/react-forge/swipeon-react"
46
48
  },
49
+ "homepage": "https://react-forge.github.io/swipeon-react",
47
50
  "peerDependencies": {
48
51
  "react": ">=16.8.0",
49
52
  "react-dom": ">=16.8.0"
50
53
  },
51
54
  "devDependencies": {
55
+ "@storybook/addon-a11y": "^8.6.0",
56
+ "@storybook/addon-essentials": "^8.6.0",
57
+ "@storybook/addon-interactions": "^8.6.0",
58
+ "@storybook/blocks": "^8.6.0",
59
+ "@storybook/manager-api": "^8.6.0",
60
+ "@storybook/react": "^8.6.0",
61
+ "@storybook/react-vite": "^8.6.0",
62
+ "@storybook/theming": "^8.6.0",
52
63
  "@types/react": "^18.2.45",
53
64
  "@types/react-dom": "^18.2.18",
54
65
  "react": "^18.2.0",
55
66
  "react-dom": "^18.2.0",
67
+ "storybook": "^8.6.0",
56
68
  "tsdown": "0.18.2",
57
69
  "tslib": "^2.6.2",
58
- "typescript": "^5.3.3"
59
- }
70
+ "typescript": "^5.3.3",
71
+ "vite": "^5.0.0"
72
+ },
73
+ "packageManager": "yarn@3.6.0+sha512.418e45c2268c4d6b69a28f3939084b5853d5f392c43c0b5588bd1995a96e328414ae4b7777a8980c64bad4328c52586ff879b289f98ae65372a55fa4d0ff70dd"
60
74
  }