2023-02-04 10:26:47 +08:00
|
|
|
{
|
2023-02-04 10:53:27 +08:00
|
|
|
"name": "@hono/graphql-server",
|
2025-06-09 18:05:17 +08:00
|
|
|
"version": "0.6.1",
|
2023-02-04 12:19:41 +08:00
|
|
|
"repository": "git@github.com:honojs/middleware.git",
|
2023-02-04 10:26:47 +08:00
|
|
|
"author": "Minghe Huang <h.minghe@gmail.com>",
|
2025-03-27 10:17:41 +08:00
|
|
|
"type": "module",
|
2023-02-04 10:26:47 +08:00
|
|
|
"main": "dist/index.js",
|
2025-03-27 10:17:41 +08:00
|
|
|
"module": "dist/index.js",
|
2023-02-04 10:26:47 +08:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2025-03-27 10:17:41 +08:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"types": "./dist/index.d.cts",
|
|
|
|
"default": "./dist/index.cjs"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-02-04 10:26:47 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2025-03-27 10:17:41 +08:00
|
|
|
"build": "tsup ./src/index.ts",
|
|
|
|
"prepack": "yarn build",
|
|
|
|
"publint": "attw --pack && publint",
|
2025-04-02 17:28:02 +08:00
|
|
|
"typecheck": "tsc -b tsconfig.json",
|
2025-03-27 10:17:41 +08:00
|
|
|
"test": "vitest"
|
2023-02-04 10:26:47 +08:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-02-15 04:22:19 +08:00
|
|
|
"hono": ">=3.0.0"
|
2023-02-04 10:26:47 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"graphql": "^16.5.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-03-27 10:17:41 +08:00
|
|
|
"@arethetypeswrong/cli": "^0.17.4",
|
|
|
|
"publint": "^0.3.9",
|
|
|
|
"tsup": "^8.4.0",
|
2025-04-02 17:28:02 +08:00
|
|
|
"typescript": "^5.8.2",
|
2025-03-12 11:52:15 +08:00
|
|
|
"vitest": "^3.0.8"
|
2023-02-04 10:26:47 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-02-04 10:53:27 +08:00
|
|
|
"node": ">=16.0.0"
|
2023-02-04 10:26:47 +08:00
|
|
|
}
|
2025-03-27 10:34:20 +08:00
|
|
|
}
|