Files
hono-pug-renderer/package.json
T
2025-05-29 09:51:34 +02:00

48 lines
1.1 KiB
JSON

{
"name": "hono-pug-renderer",
"type": "module",
"version": "0.0.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Pug renderer middleware for Hono",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"keywords": [
"hono",
"pug",
"renderer",
"middleware"
],
"license": "MIT",
"homepage": "https://github.com/LucasVbr/hono-pug-renderer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LucasVbr/hono-pug-renderer.git"
},
"bugs": "https://github.com/LucasVbr/hono-pug-renderer/issues",
"author": "Lucàs Vabre <contact@lucasvbr.dev>",
"dependencies": {
"hono": "^4.7.8",
"pug": "^3.0.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/pug": "^2.0.10",
"prettier": "^3.5.3",
"bun-plugin-dts": "latest"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}