honojs-middleware/package.json

49 lines
1.5 KiB
JSON
Raw Normal View History

2022-10-16 16:52:21 +08:00
{
"name": "hono-middleware",
"version": "0.0.0",
"description": "Third-party middleware for Hono",
"workspaces": {
"packages": [
"packages/*"
]
},
2022-12-24 20:01:15 +08:00
"scripts": {
"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",
"typecheck": "yarn tsc --build",
"typecheck:clean": "yarn tsc --build --clean",
"typecheck:watch": "yarn tsc --build --watch",
"test": "vitest",
"lint": "eslint 'packages/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'packages/**/*.{ts,tsx}'",
"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",
"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",
"@cloudflare/vitest-pool-workers": "^0.7.8",
2023-03-21 21:32:46 +08:00
"@cloudflare/workers-types": "^4.20230307.0",
"@hono/eslint-config": "workspace:*",
"@ryoppippi/unplugin-typia": "^1.2.0",
"@types/bun": "^1.0.0",
"@types/node": "^20.17.28",
"@types/ws": "^8.18.0",
"@vitest/coverage-istanbul": "^3.0.8",
"eslint": "^9.23.0",
2025-06-02 04:06:04 +08:00
"hono": "^4.7.11",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
2025-06-13 04:21:52 +08:00
"packageManager": "yarn@4.9.2"
}