ts-paginate
Version:
This package provide pagination to any data records that has id attribute
68 lines (67 loc) • 1.64 kB
JSON
{
"name": "ts-paginate",
"version": "1.2.5",
"description": "This package provide pagination to any data records that has id attribute",
"main": "dist/index.js",
"module": "bundle/index.min.js",
"types": "dist/index.d.ts",
"license": "ISC",
"author": "Alessandro Dev",
"exports": {
"node": "./dist/index.js",
"require": "./bundle/index.min.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"keywords": [
"Pagination",
"Nodes",
"Edges",
"Cursor Pagination",
"Offset Data",
"Limit Data",
"Paginate",
"Ts-paginate",
"Node Paginate"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "jest --runInBand",
"prerun:example": "yarn build",
"prebuild": "rimraf ./dist ./bundle && yarn check:circular-deps",
"postbuild": "yarn webpack && yarn package-check && yarn test",
"build": "tsc",
"check:circular-deps": "madge --circular --extensions ts ./lib",
"run:example": "ts-node examples/simple-example.ts"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"babel-loader": "^8.2.4",
"jest": "^27.5.1",
"madge": "^5.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/ts-paginate.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/ts-paginate/issues"
},
"homepage": "https://github.com/4lessandrodev/ts-paginate",
"files": [
"dist/*",
"bundle/*",
"package.json"
]
}