-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.96 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
{
"name": "@graphql-hive/yoga",
"version": "0.49.1",
"type": "module",
"description": "Hive Console + GraphQL Yoga",
"repository": {
"type": "git",
"url": "https://github.com/graphql-hive/console",
"directory": "packages/libraries/yoga"
},
"homepage": "https://the-guild.dev/graphql/hive",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/cjs/index.js",
"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"
},
"typings": "dist/typings/index.d.ts",
"scripts": {
"build": "node ../../../scripts/generate-version.mjs && bob build",
"check:build": "bob check"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"graphql-yoga": "^5.10.8"
},
"dependencies": {
"@graphql-hive/core": "workspace:*",
"@graphql-hive/logger": "^1.1.0",
"@graphql-yoga/plugin-persisted-operations": "^3.9.0"
},
"devDependencies": {
"@graphql-tools/schema": "10.0.25",
"@graphql-yoga/plugin-defer-stream": "3.7.0",
"@graphql-yoga/plugin-disable-introspection": "2.7.0",
"@graphql-yoga/plugin-graphql-sse": "3.7.0",
"@graphql-yoga/plugin-response-cache": "3.9.0",
"@whatwg-node/fetch": "0.10.13",
"graphql-ws": "5.16.1",
"graphql-yoga": "5.13.3",
"vitest": "4.1.3",
"ws": "8.21.0"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}