-
Notifications
You must be signed in to change notification settings - Fork 588
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 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
{
"name": "@graphql-yoga/urql-exchange",
"version": "5.2.0",
"type": "module",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/graphql-hive/graphql-yoga.git",
"directory": "packages/urql-exchange"
},
"author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/cjs/index.js",
"typings": "dist/typings/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.cts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
},
"keywords": [
"graphql",
"server",
"graphql-yoga",
"apollo"
],
"scripts": {
"check": "tsc --pretty --noEmit"
},
"peerDependencies": {
"@urql/core": "^6.0.0",
"graphql": "^15.2.0 || ^16.0.0",
"wonka": "^6.0.0"
},
"dependencies": {
"@graphql-tools/executor-http": "^3.0.0",
"@graphql-tools/executor-urql-exchange": "^1.0.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@urql/core": "6.0.1",
"graphql-yoga": "workspace:*",
"wonka": "6.3.5"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"buildOptions": {
"input": "./src/index.ts"
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}