-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@aboutbits/react-pagination",
"version": "3.0.7",
"description": "Pagination hooks for React",
"engines": {
"npm": ">=8",
"node": ">=16"
},
"files": [
"readme.md",
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "eslint --cache .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch --passWithNoTests",
"typecheck": "tsc --noEmit",
"checks": "npm run test && npm run lint && npm run typecheck",
"prepublishOnly": "npm run checks",
"prepare": "npm run build",
"preversion": "npm run checks",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-pagination"
},
"private": false,
"keywords": [
"react",
"query",
"pagination",
"zod"
],
"author": "About Bits",
"license": "MIT",
"bugs": {
"url": "https://github.com/aboutbits/react-pagination/issues"
},
"homepage": "https://github.com/aboutbits/react-pagination#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@aboutbits/eslint-config": "^2.0.12",
"@aboutbits/prettier-config": "^1.5.0",
"@aboutbits/ts-config": "^1.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jsdom": "^22.1.0",
"next": "^13.1.3",
"next-router-mock": "^0.7.4",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vitest": "^0.33.0"
},
"peerDependencies": {
"next": "^12.0.0 || ^13.0.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"react-router-dom": {
"optional": true
},
"zod": {
"optional": true
}
},
"prettier": "@aboutbits/prettier-config"
}