-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "kysely-paginate",
"version": "0.3.1",
"description": "Pagination helpers for use with kysely",
"repository": {
"type": "git",
"url": "git://github.com/charlie-hadden/kysely-paginate.git"
},
"author": "Charlie Hadden <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 16.14.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"release": "pnpm run build && pnpm changeset publish",
"bench": "vitest bench",
"lint": "eslint .",
"test": "vitest --no-threads",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@faker-js/faker": "^8.3.1",
"@types/better-sqlite3": "^7.6.7",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"better-sqlite3": "^9.1.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"kysely": "^0.26.3",
"mysql2": "^3.6.4",
"pg": "^8.11.3",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "0.34.6",
"zod": "^3.22.4"
},
"peerDependencies": {
"kysely": "*"
},
"files": [
"./dist"
]
}