-
-
Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathpackage.json
137 lines (137 loc) · 3.46 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "grafserv",
"version": "0.1.1-beta.21",
"description": "A highly optimized server for GraphQL, powered by Grafast",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./envelop": {
"types": "./dist/envelop/index.d.ts",
"default": "./dist/envelop/index.js"
},
"./node": {
"types": "./dist/servers/node/index.d.ts",
"default": "./dist/servers/node/index.js"
},
"./express/v4": {
"types": "./dist/servers/express/v4/index.d.ts",
"default": "./dist/servers/express/v4/index.js"
},
"./lambda/v1": {
"types": "./dist/servers/lambda/v1/index.d.ts",
"default": "./dist/servers/lambda/v1/index.js"
},
"./koa/v2": {
"types": "./dist/servers/koa/v2/index.d.ts",
"default": "./dist/servers/koa/v2/index.js"
},
"./fastify/v4": {
"types": "./dist/servers/fastify/v4/index.d.ts",
"default": "./dist/servers/fastify/v4/index.js"
},
"./h3/v1": {
"types": "./dist/servers/h3/v1/index.d.ts",
"default": "./dist/servers/h3/v1/index.js"
},
"./ruru": {
"types": "./fwd/ruru/index.d.ts",
"node": "./fwd/ruru/index.js",
"default": "./fwd/ruru/index.js"
},
"./ruru/server": {
"types": "./fwd/ruru/server/index.d.ts",
"node": "./fwd/ruru/server/index.js",
"default": "./fwd/ruru/server/index.js"
},
"./ruru/cli": {
"types": "./fwd/ruru/cli/index.d.ts",
"node": "./fwd/ruru/cli/index.js",
"default": "./fwd/ruru/cli/index.js"
}
},
"scripts": {
"prepack": "tsc -b",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"server",
"grafast",
"graphql",
"graphile",
"fast",
"graphite"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://github.com/graphile/crystal/tree/main/grafast/grafserv",
"dependencies": {
"@graphile/lru": "workspace:^",
"debug": "^4.3.4",
"eventemitter3": "^5.0.1",
"graphile-config": "workspace:^",
"graphql-ws": "^5.14.0",
"ruru": "workspace:^",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.10"
},
"peerDependencies": {
"@envelop/core": "^5.0.0",
"grafast": "workspace:^",
"graphile-config": "workspace:^",
"graphql": "^16.1.0-experimental-stream-defer.6",
"h3": "^1.13.0",
"ws": "^8.12.1"
},
"peerDependenciesMeta": {
"@envelop/core": {
"optional": true
},
"h3": {
"optional": true
},
"ws": {
"optional": true
}
},
"devDependencies": {
"@envelop/core": "^5.0.0",
"@fastify/websocket": "^8.2.0",
"@types/aws-lambda": "^8.10.123",
"@types/express": "^4.17.17",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@whatwg-node/fetch": "^0.9.10",
"@whatwg-node/server": "^0.9.64",
"express": "^4.20.0",
"fastify": "^4.22.1",
"grafast": "workspace:^",
"graphql-http": "^1.22.0",
"h3": "^1.13.0",
"jest": "^29.6.4",
"jest-serializer-graphql-schema": "workspace:^",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist",
"fwd",
"index.js"
]
}