honojs-middleware/packages/graphql-server/package.json

54 lines
1.4 KiB
JSON

{
"name": "@hono/graphql-server",
"version": "0.5.1",
"repository": "git@github.com:honojs/middleware.git",
"author": "Minghe Huang <h.minghe@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "vitest",
"test:all": "yarn test",
"build": "rimraf dist && tsc",
"lint": "eslint --ext js,ts src .eslintrc.js",
"lint:fix": "eslint --ext js,ts src .eslintrc.js --fix",
"prerelease": "yarn build && yarn test",
"release": "np"
},
"peerDependencies": {
"hono": ">=3.0.0"
},
"dependencies": {
"graphql": "^16.5.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.14.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.4.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import-x": "^4.1.1",
"eslint-plugin-n": "^17.10.2",
"hono": "^4.0.2",
"np": "^7.6.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=16.0.0"
}
}