2022-10-16 16:52:21 +08:00
|
|
|
{
|
|
|
|
"name": "hono-middleware",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "Third-party middleware for Hono",
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2022-12-24 20:01:15 +08:00
|
|
|
"scripts": {
|
2023-01-01 23:03:44 +08:00
|
|
|
"build:hello": "yarn workspace @hono/hello build",
|
|
|
|
"build:zod-validator": "yarn workspace @hono/zod-validator build",
|
2023-01-13 08:07:41 +08:00
|
|
|
"build:qwik-city": "yarn workspace @hono/qwik-city build",
|
2023-02-04 10:53:27 +08:00
|
|
|
"build:graphql-server": "yarn workspace @hono/graphql-server build",
|
2023-02-04 15:19:47 +08:00
|
|
|
"build:sentry": "yarn workspace @hono/sentry build",
|
2023-01-13 08:07:41 +08:00
|
|
|
"build": "run-p build:*"
|
2022-12-24 20:01:15 +08:00
|
|
|
},
|
2022-10-16 16:52:21 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"private": true,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@changesets/cli": "^2.25.0",
|
|
|
|
"@cloudflare/workers-types": "^3.17.0",
|
|
|
|
"@types/jest": "^29.1.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
|
|
"@typescript-eslint/parser": "^5.32.0",
|
|
|
|
"eslint": "^8.21.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-define-config": "^1.6.0",
|
|
|
|
"eslint-import-resolver-typescript": "^3.4.0",
|
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
|
|
"eslint-plugin-flowtype": "^8.0.3",
|
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"jest": "^28.1.2",
|
|
|
|
"jest-environment-miniflare": "^2.10.0",
|
2023-01-13 08:07:41 +08:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-10-16 16:52:21 +08:00
|
|
|
"prettier": "^2.7.1",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-jest": "^28.0.5",
|
|
|
|
"typescript": "^4.7.4"
|
|
|
|
}
|
2022-12-24 20:01:15 +08:00
|
|
|
}
|