-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.7 KB
/
package.json
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
97
98
99
100
{
"name": "@aboutbits/react-pagination",
"version": "3.1.2",
"description": "Pagination hooks for React",
"author": "About Bits",
"license": "MIT",
"homepage": "https://github.com/aboutbits/react-pagination",
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-pagination"
},
"bugs": {
"url": "https://github.com/aboutbits/react-pagination/issues"
},
"keywords": [
"react",
"query",
"pagination",
"zod"
],
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist",
"module": "dist/esm",
"prettier": "@aboutbits/prettier-config",
"files": [
"readme.md",
"dist/**/*"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"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"
},
"devDependencies": {
"@aboutbits/eslint-config": "^2.2.4",
"@aboutbits/prettier-config": "^1.6.1",
"@aboutbits/ts-config": "^1.1.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"jsdom": "^24.0.0",
"next": "^14.1.4",
"next-router-mock": "^0.9.12",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"rimraf": "^5.0.5",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vitest": "^1.4.0"
},
"peerDependencies": {
"next": "^12.0.0 || ^13.0.0 || ^14.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
}
}
}