@vx-oss/use-pagination
Version:
State management hook for Pagination component, it lets you manage pagination with controlled and uncontrolled state
60 lines • 1.45 kB
JSON
{
"name": "@vx-oss/use-pagination",
"version": "0.1.8",
"description": "State management hook for Pagination component, it lets you manage pagination with controlled and uncontrolled state",
"keywords": [
"use-pagination"
],
"author": "Vx OSS Devs <oss-developers@vezham.com>",
"homepage": "https://vezham.com",
"license": "MIT",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vezham/heroui.git",
"directory": "packages/hooks/use-pagination"
},
"bugs": {
"url": "https://github.com/vezham/heroui/issues"
},
"dependencies": {
"@react-aria/i18n": "3.12.12",
"@vx-oss/shared-utils": "0.1.8"
},
"peerDependencies": {
"react": ">=18 || >=19.0.0-rc.0"
},
"clean-package": "../../../clean-package.config.json",
"tsup": {
"clean": true,
"target": "es2019",
"format": [
"cjs",
"esm"
]
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src --dts",
"dev": "pnpm build:fast --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src"
}
}