-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
76
77
78
79
{
"name": "@labdigital/graphql-fetcher",
"version": "2.2.3",
"description": "Custom fetcher for react-query to use with @labdigital/node-federated-token",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"graphql",
"authentication"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"require": "./dist/server.cjs"
}
},
"author": "Lab Digital <opensource@labdigital.nl>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labd/node-graphql-fetcher"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown --env.PACKAGE_VERSION $(jq -r '.version' package.json)",
"format": "biome format --fix",
"lint": "biome lint",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"test:ci": "vitest run --coverage",
"test": "vitest run",
"tsc": "tsc --noEmit"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@apollo/utils.createhash": "3.0.1",
"graphql-toe": "^1.0.0",
"tiny-invariant": "1.3.1"
},
"devDependencies": {
"@apollo/server-gateway-interface": "2.0.0",
"@biomejs/biome": "^2.4.7",
"@changesets/cli": "2.30.0",
"@graphql-typed-document-node/core": "3.2.0",
"@types/node": "20.19.30",
"@types/react": "19.2.14",
"@vitest/coverage-v8": "4.1.0",
"msw": "^2.12.12",
"tsdown": "^0.21.4",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.0"
},
"peerDependencies": {
"@opentelemetry/api": ">= 1.7.0",
"graphql": ">= 16.6.0",
"react": ">= 18.0.0",
"react-dom": ">= 18.2.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"rollup": ">=4.59.0"
}
}
}