mirror of
https://github.com/LucasVbr/hono-pug-renderer.git
synced 2026-05-13 17:21:51 +00:00
44 lines
1017 B
JSON
44 lines
1017 B
JSON
{
|
|
"name": "hono-pug-renderer",
|
|
"module": "src/index.ts",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"description": "Pug renderer middleware for Hono",
|
|
"scripts": {
|
|
"build": "bun build --target=node ./src/index.ts --outfile=./dist/index.js && bun run build:declaration",
|
|
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
|
|
"postbuild": "rimraf tsconfig.types.tsbuildinfo"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/pug": "^2.0.10",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^6.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.7.8",
|
|
"pug": "^3.0.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/LucasVbr/hono-pug-renderer.git"
|
|
},
|
|
"keywords": [
|
|
"hono",
|
|
"pug",
|
|
"renderer",
|
|
"middleware"
|
|
],
|
|
"author": "LucasVbr",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/*.js",
|
|
"dist/*.d.ts"
|
|
]
|
|
}
|