-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "drizzle-pagination",
"version": "1.0.12",
"description": "Easily add cursor pagination to your Drizzle ORM queries.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"repository": {
"type": "git",
"url": "https://github.com/miketromba/drizzle-pagination"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist/",
"prebuild": "pnpm clean",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"pretest": "pnpm build",
"prepublish": "pnpm build"
},
"keywords": ["drizzle", "orm", "pagination", "drizzle-orm", "cursor pagination", "drizzle pagination", "paginate drizzle"],
"author": "Michael Tromba",
"license": "MIT",
"peerDependencies": {
"drizzle-orm": ">=0.27.2 <1.0.0"
},
"devDependencies": {
"rimraf": "^5.0.1",
"tsup": "^7.1.0",
"typescript": "^5.1.3"
}
}