-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.11 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
95
96
97
{
"name": "helix-flare",
"version": "2.0.0",
"license": "MIT",
"contributors": [
"dan-lee <[email protected]>",
"mosch <[email protected]>"
],
"repository": "https://github.com/launchport/helix-flare",
"description": "GraphQL Helix for your Cloudflare Workers",
"type": "module",
"main": "./dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"envelop": [
"dist/envelop.d.ts"
]
}
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest --forceExit",
"prepublishOnly": "yarn tsc --noEmit && yarn test && yarn build"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"keywords": [
"graphql",
"subscriptions",
"sse",
"cloudflare",
"cloudflare-workers",
"graphql-helix"
],
"peerDependencies": {
"@envelop/core": "^2.0.0",
"graphql": "15 || 16"
},
"peerDependenciesMeta": {
"@envelop/core": {
"optional": true
}
},
"resolutions": {
"undici": "4.12.x"
},
"dependencies": {
"event-iterator": "^2",
"graphql-helix": "1.12.0",
"graphql-middleware": "^6.1.21"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@envelop/core": "2.1.0",
"@graphql-tools/schema": "^8.3.6",
"@graphql-tools/wrap": "^8.4.10",
"@types/jest": "27.4.1",
"esbuild": "^0.14.29",
"graphql": "16.3.0",
"graphql-sse": "^1.1.0",
"jest": "^27.5.1",
"jest-environment-miniflare": "2.3.0",
"jest-environment-node": "^27.5.1",
"miniflare": "2.3.0",
"nanoevents": "6.0.2",
"prettier": "^2.6.1",
"source-map-support": "^0.5.21",
"tiny-glob": "0.2.9",
"ts-jest": "^27.1.4",
"tsup": "^5.12.1",
"typescript": "4.6.3",
"undici": "4.12.2"
}
}