UNPKG

@hacksaw/hono-google-cloud-logging

Version:

Google Cloud Logging Middleware for Hono

43 lines 1.05 kB
{ "name": "@hacksaw/hono-google-cloud-logging", "version": "0.0.1-alpha", "description": "Google Cloud Logging Middleware for Hono", "type": "module", "exports": { ".": "./dist/index.js" }, "types": "dist/types/index.d.ts", "files": [ "./dist/**" ], "keywords": [ "hono", "google-cloud-logging" ], "author": { "name": "Jacob Stordahl", "email": "jacob@hacksaw.software", "url": "https://hacksaw.software" }, "license": "MIT", "dependencies": { "@google-cloud/logging": "^11.2.0", "hono": "^4.7.4" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/node": "^22.13.10", "typescript": "^5.8.2" }, "scripts": { "build": "tsc", "check": "pnpm biome check", "dev": "tsc --watch", "format": "pnpm biome format", "format:fix": "pnpm biome format --write", "lint": "pnpm biome lint", "lint:fix": "pnpm biome lint --write", "prepublish": "pnpm run check && pnpm run build", "test": "echo \"Error: no test specified\" && exit 1" } }