-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 925 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 925 Bytes
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
{
"name": "@objectql/plugin-server",
"version": "3.0.1",
"description": "HTTP server plugin for ObjectQL - Provides Express, Hono and REST API support",
"keywords": [
"objectql",
"plugin",
"server",
"http",
"api",
"rest",
"graphql",
"express",
"hono",
"adapter",
"backend"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@objectql/core": "workspace:*",
"@objectql/types": "workspace:*",
"graphql": "^16.8.1",
"@graphql-tools/schema": "^10.0.2",
"js-yaml": "^4.1.1"
},
"peerDependencies": {
"hono": "^4.11.0"
},
"peerDependenciesMeta": {
"hono": {
"optional": true
}
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"hono": "^4.11.0",
"typescript": "^5.3.0"
}
}