honojs-middleware/package.json

50 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",
"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 'packages/**/*.{ts,tsx}'",
"format:fix": "prettier --write 'packages/**/*.{ts,tsx}'"
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/node": "^20.17.28",
"@types/ws": "^8.18.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-istanbul": "^3.0.8",
"eslint": "^9.17.0",
"hono": "^4.7.5",
"npm-run-all2": "^6.2.2",
2022-10-16 16:52:21 +08:00
"prettier": "^2.7.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"packageManager": "yarn@4.0.2"
2024-08-10 15:04:13 +08:00
}