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-02-04 19:20:42 +08:00
|
|
|
"build:firebase-auth": "yarn workspace @hono/firebase-auth build",
|
2023-02-04 22:37:15 +08:00
|
|
|
"build:trpc-server": "yarn workspace @hono/trpc-server build",
|
2023-02-24 17:22:02 +08:00
|
|
|
"build:typebox-validator": "yarn workspace @hono/typebox-validator build",
|
2023-04-21 22:43:30 +08:00
|
|
|
"build:medley-router": "yarn workspace @hono/medley-router build",
|
2023-07-30 07:07:44 +08:00
|
|
|
"build:valibot-validator": "yarn workspace @hono/valibot-validator 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": {
|
2023-02-12 21:28:03 +08:00
|
|
|
"@changesets/changelog-github": "^0.4.8",
|
2023-03-21 21:32:46 +08:00
|
|
|
"@changesets/cli": "^2.26.0",
|
|
|
|
"@cloudflare/workers-types": "^4.20230307.0",
|
|
|
|
"@types/jest": "^29.5.0",
|
2022-10-16 16:52:21 +08:00
|
|
|
"@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",
|
2023-03-21 21:32:46 +08:00
|
|
|
"jest": "^29.5.0",
|
2022-10-16 16:52:21 +08:00
|
|
|
"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",
|
2023-03-21 21:32:46 +08:00
|
|
|
"ts-jest": "^29.0.5",
|
2022-10-16 16:52:21 +08:00
|
|
|
"typescript": "^4.7.4"
|
|
|
|
}
|
2023-04-21 22:43:30 +08:00
|
|
|
}
|