generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "ts-relay-cursor-paging",
"type": "module",
"version": "2.1.0",
"packageManager": "[email protected]",
"description": "Relay Cursor Paging for GraphQL",
"author": "Mehmet @productdevbook",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/ts-relay-cursor-paging",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/ts-relay-cursor-paging.git"
},
"bugs": "https://github.com/productdevbookcom/ts-relay-cursor-paging/issues",
"keywords": [
"relay",
"cursor",
"paging",
"pagination",
"relay-cursor-paging",
"relay-cursor-pagination",
"relay-pagination",
"relay-paging"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint . --cache && pnpm typecheck",
"lint:fix": "eslint . --cache --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"graphql": "^16.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@types/node": "^20.11.24",
"@vitest/coverage-v8": "^1.3.1",
"bumpp": "^9.3.0",
"eslint": "^8.57.0",
"graphql": "^16.8.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"publishConfig": {
"access": "public"
}
}