Skip to content

Commit

Permalink
chore(swiperia): enhance package metadata and update dependencies
Browse files Browse the repository at this point in the history
This commit enhances the package metadata for all Swiperia packages, providing comprehensive descriptions, keywords, and repository information.

Additionally, it updates the dependencies to ensure compatibility and leverage the latest features:

- `swiperia-core` is bumped to version 1.0.1m.
- `swiperia-js` is bumped to version 1.0.1 and now relies on `swiperia-core` 1.0.1.
- `swiperia-react` remains at version 1.0.2 but now depends on `swiperia-core` 1.0.1 and `swiperia-js` 1.0.1.

These changes improve the discoverability, maintainability, and overall quality of the Swiperia packages.
  • Loading branch information
samavati committed Sep 9, 2024
1 parent 6d4a0e3 commit 4de4fd9
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 8 deletions.
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
{
"name": "swiperia",
"version": "0.0.0",
"description": "A collection of JavaScript libraries for seamless swipe gesture integration. Includes platform-agnostic core utilities, web-specific implementations, and React components, empowering developers to enhance user experiences with intuitive swipe interactions.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samavati/swiperia.git"
},
"bugs": {
"url": "https://github.com/samavati/swiperia/issues"
},
"homepage": "https://github.com/samavati/swiperia#readme",
"keywords": [
"swipe",
"gesture",
"touch",
"mobile",
"react",
"javascript",
"ui",
"interaction"
],
"scripts": {},
"private": true,
"dependencies": {
Expand Down
24 changes: 22 additions & 2 deletions packages/swiperia-core/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
{
"name": "swiperia-core",
"version": "1.0.0",
"version": "1.0.1m",
"description": "Swiperia Core: The foundational engine for handling swipe gestures in JavaScript. Provides platform-agnostic utilities to detect swipe direction, calculate distance and velocity, and analyze swipe movement data.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samavati/swiperia.git"
},
"bugs": {
"url": "https://github.com/samavati/swiperia/issues"
},
"homepage": "https://github.com/samavati/swiperia#readme",
"keywords": [
"swipe",
"gesture",
"touch",
"mobile",
"react",
"javascript",
"ui",
"interaction"
],
"dependencies": {},
"main": "./index.js",
"main": "./index.umd.js",
"module": "./index.mjs",
"typings": "./index.d.ts"
}
26 changes: 23 additions & 3 deletions packages/swiperia-js/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
{
"name": "swiperia-js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Swiperia JS: A powerful suite of JavaScript libraries for building intuitive swipe-driven user interfaces. Provides core gesture handling, web-specific implementations, and React components for seamless integration.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samavati/swiperia.git"
},
"bugs": {
"url": "https://github.com/samavati/swiperia/issues"
},
"homepage": "https://github.com/samavati/swiperia#readme",
"keywords": [
"swipe",
"gesture",
"touch",
"mobile",
"react",
"javascript",
"ui",
"interaction"
],
"dependencies": {
"swiperia-core": "1.0.0"
"swiperia-core": "1.0.1"
},
"main": "./index.js",
"main": "./index.umd.js",
"module": "./index.mjs",
"typings": "./index.d.ts"
}
26 changes: 23 additions & 3 deletions packages/swiperia-react/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@
{
"name": "swiperia-react",
"version": "1.0.2",
"description": "Swiperia React: A powerful suite of JavaScript libraries for building intuitive swipe-driven user interfaces. Provides core gesture handling, web-specific implementations, and React components for seamless integration.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samavati/swiperia.git"
},
"bugs": {
"url": "https://github.com/samavati/swiperia/issues"
},
"homepage": "https://github.com/samavati/swiperia#readme",
"keywords": [
"swipe",
"gesture",
"touch",
"mobile",
"react",
"javascript",
"ui",
"interaction"
],
"dependencies": {
"swiperia-core": "1.0.0",
"swiperia-js": "1.0.0"
"swiperia-core": "1.0.1",
"swiperia-js": "1.0.1"
},
"main": "./index.js",
"main": "./index.umd.js",
"module": "./index.mjs",
"typings": "./index.d.ts"
}

0 comments on commit 4de4fd9

Please sign in to comment.