-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "sql-cursor-pagination",
"description": "Library to help with cursor based pagination, from an SQL database.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"bin": {
"generate-secret": "bin/generate-secret.js"
},
"files": [
"dist",
"bin"
],
"keywords": [
"cursor-pagination",
"cursor",
"sql",
"pagination",
"graphql",
"graphql-cursor-connections"
],
"scripts": {
"build": "rm -rf dist && rollup --config rollup.config.mjs",
"watch": "rollup --config rollup.config.mjs --watch",
"lint": "eslint --ext .ts --max-warnings 0 --cache src",
"prettier": "prettier --cache --write .",
"prettier:check": "prettier --cache --check .",
"test": "vitest run",
"test:dev": "vitest dev",
"test:coverage": "vitest run --coverage",
"test:types": "tsc -p tsconfig.test.json --noEmit",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/sql-cursor-pagination.git"
},
"author": "Tom Jenkinson <tom@tjenkinson.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/sql-cursor-pagination/issues"
},
"homepage": "https://github.com/tjenkinson/sql-cursor-pagination#readme",
"dependencies": {
"p-map": "^7.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "20.12.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "1.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-redos-detector": "2.4.2",
"espree": "10.3.0",
"husky": "9.1.7",
"knex": "3.1.0",
"lint-staged": "15.2.11",
"micromatch": "4.0.8",
"prettier": "3.3.2",
"rollup": "4.28.1",
"sqlite3": "5.1.7",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vitest": "1.6.0"
}
}