-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(swiperia): enhance package metadata and update dependencies
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
Showing
4 changed files
with
87 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |