-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "prisma-paginate",
"version": "0.2.1",
"description": "Paginate ORM Prisma",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [
"orm",
"prisma",
"paginate",
"pagination"
],
"scripts": {
"test": "jest",
"build": "tsc",
"docs": "typedoc src/index.ts",
"lint": "eslint ./src ./test --ext .ts",
"prettier": "npx prettier 'src/**/*.{js,ts,mjs,cjs,json}' --write"
},
"repository": {
"type": "git",
"url": "https://github.com/sandrewTx08/prisma-paginate.git"
},
"author": "sandrewTx08",
"license": "ISC",
"bugs": {
"url": "https://github.com/sandrewTx08/prisma-paginate/issues"
},
"homepage": "https://github.com/sandrewTx08/prisma-paginate#readme",
"devDependencies": {
"@prisma/client": ">=5.7.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prisma": ">=5.7.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.25.13",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@prisma/client": ">=4.9.0",
"prisma": ">=4.9.0"
}
}