-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.3 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
{
"name": "@hono/graphql-server",
"version": "0.7.0",
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/graphql-server"
},
"author": "Minghe Huang <h.minghe@gmail.com>",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsdown",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest",
"version:jsr": "yarn version:set $npm_package_version"
},
"peerDependencies": {
"hono": ">=3.0.0"
},
"dependencies": {
"graphql": "^16.5.0"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"hono": "^4.11.5",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0-beta.1"
},
"engines": {
"node": ">=16.0.0"
}
}