-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@soundxyz/response-cache",
"version": "3.0.2",
"description": "Heavily inspired by @envelop/response-cache",
"keywords": [
"envelop",
"graphql",
"api",
"redis",
"cache",
"sound.xyz",
"soundxyz"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soundxyz/response-cache.git"
},
"license": "MIT",
"author": "PabloSzx <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "bob-ts -f interop -i src --no-sourcemap && tsc -p tsconfig.build.json",
"release": "changeset publish",
"test": "vitest run"
},
"dependencies": {
"@graphql-tools/utils": "^9.1.4",
"fast-json-stable-stringify": "^2.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@envelop/core": "^3.0.4",
"@envelop/testing": "^5.0.4",
"@envelop/types": "^3.0.1",
"@graphql-ez/fastify": "^0.12.0",
"@graphql-ez/fastify-testing": "^0.4.0",
"@graphql-tools/schema": "^9.0.13",
"@types/node": "^18.11.18",
"bob-ts": "^4.1.1",
"c8": "^7.12.0",
"esbuild": "^0.16.17",
"fastify": "^4.11.0",
"graphql": "16.6.0",
"graphql-ez": "^0.16.0",
"ioredis": "^5.2.4",
"pino": "^8.8.0",
"prettier": "^2.8.2",
"redis-memory-server": "^0.6.0",
"redlock": "5.0.0-beta.2",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"peerDependencies": {
"@envelop/core": "*",
"graphql": "*",
"ioredis": "^5.0.4",
"redlock": "^5.0.0-beta.2"
},
"peerDependenciesMeta": {
"redlock": {
"optional": true
}
},
"engines": {
"node": ">=16"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"graphql": "*",
"fastify": "*"
}
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}