honojs-middleware/package.json

56 lines
2.1 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 --parallel --verbose run build",
"publint": "yarn workspaces foreach --all --topological --parallel --verbose run publint",
"publish": "yarn publish:npm && yarn publish:jsr",
"publish:npm": "yarn workspaces foreach --all --no-private --topological --verbose npm publish --tolerate-republish && changeset tag",
"publish:jsr": "deno install --no-lock && deno publish",
"version": "yarn version:npm && yarn version:jsr",
2025-07-02 07:45:33 +08:00
"version:npm": "changeset version",
"version:jsr": "yarn workspaces foreach --all --no-private --parallel run version:jsr",
"version:set": "tmp=$(mktemp) && jq --arg version $0 '.version = $version' $INIT_CWD/deno.json > $tmp && mv $tmp $INIT_CWD/deno.json && prettier --write $INIT_CWD/deno.json",
"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",
2025-06-20 05:59:04 +08:00
"@cloudflare/vitest-pool-workers": "^0.8.38",
"@cloudflare/workers-types": "^4.20250612.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",
2025-06-20 05:59:04 +08:00
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "^9.23.0",
"hono": "^4.8.4",
"pkg-pr-new": "^0.0.51",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
2025-06-20 05:59:04 +08:00
"vitest": "^3.2.4"
},
2025-06-13 04:21:52 +08:00
"packageManager": "yarn@4.9.2"
}