2022-10-16 16:52:21 +08:00
|
|
|
{
|
|
|
|
"name": "hono-middleware",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "Third-party middleware for Hono",
|
2023-08-19 01:43:36 +08:00
|
|
|
"workspaces": {
|
|
|
|
"packages": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
|
|
|
},
|
2022-12-24 20:01:15 +08:00
|
|
|
"scripts": {
|
2025-04-02 17:28:02 +08:00
|
|
|
"build": "yarn workspaces foreach --all --topological --verbose run build",
|
|
|
|
"publint": "yarn workspaces foreach --all --topological --verbose run publint",
|
2025-05-15 21:59:54 +08:00
|
|
|
"publish": "yarn workspaces foreach --all --no-private --topological --verbose npm publish --tolerate-republish && changeset tag",
|
2025-04-02 17:28:02 +08:00
|
|
|
"typecheck": "yarn tsc --build",
|
|
|
|
"typecheck:clean": "yarn tsc --build --clean",
|
|
|
|
"typecheck:watch": "yarn tsc --build --watch",
|
2025-03-17 22:38:56 +08:00
|
|
|
"test": "vitest",
|
2023-12-13 16:22:53 +08:00
|
|
|
"lint": "eslint 'packages/**/*.{ts,tsx}'",
|
2023-12-13 16:31:25 +08:00
|
|
|
"lint:fix": "eslint --fix 'packages/**/*.{ts,tsx}'",
|
2025-06-15 08:08:01 +08:00
|
|
|
"format": "prettier --check .",
|
|
|
|
"format:fix": "prettier --write ."
|
2022-12-24 20:01:15 +08:00
|
|
|
},
|
2022-10-16 16:52:21 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"private": true,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2025-03-24 16:51:26 +08:00
|
|
|
"url": "git+https://github.com/honojs/middleware.git"
|
2022-10-16 16:52:21 +08:00
|
|
|
},
|
|
|
|
"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",
|
2025-03-28 17:50:19 +08:00
|
|
|
"@cloudflare/vitest-pool-workers": "^0.7.8",
|
2023-03-21 21:32:46 +08:00
|
|
|
"@cloudflare/workers-types": "^4.20230307.0",
|
2025-03-30 10:28:44 +08:00
|
|
|
"@hono/eslint-config": "workspace:*",
|
2025-03-17 22:38:56 +08:00
|
|
|
"@ryoppippi/unplugin-typia": "^1.2.0",
|
2025-04-07 18:31:09 +08:00
|
|
|
"@types/bun": "^1.0.0",
|
2025-04-02 17:28:02 +08:00
|
|
|
"@types/node": "^20.17.28",
|
|
|
|
"@types/ws": "^8.18.0",
|
2025-03-18 14:38:54 +08:00
|
|
|
"@vitest/coverage-istanbul": "^3.0.8",
|
2025-04-07 18:31:09 +08:00
|
|
|
"eslint": "^9.23.0",
|
2025-06-02 04:06:04 +08:00
|
|
|
"hono": "^4.7.11",
|
2025-04-07 18:31:09 +08:00
|
|
|
"prettier": "^3.5.3",
|
2025-03-24 18:41:18 +08:00
|
|
|
"tsup": "^8.4.0",
|
2025-03-27 14:08:49 +08:00
|
|
|
"typescript": "^5.8.2",
|
2025-03-12 11:52:15 +08:00
|
|
|
"vitest": "^3.0.8"
|
2023-12-13 14:54:00 +08:00
|
|
|
},
|
2025-06-13 04:21:52 +08:00
|
|
|
"packageManager": "yarn@4.9.2"
|
2025-05-27 16:47:54 +08:00
|
|
|
}
|