@hono-dev/powered-by
Version:
A X-Powered-By Plugin for Hono
61 lines (60 loc) • 1.36 kB
JSON
{
"name": "@hono-dev/powered-by",
"version": "0.0.2",
"description": "A X-Powered-By Plugin for Hono",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup --clean ./src/index.ts --format esm,cjs --dts",
"prepublishOnly": "npm run build",
"test": "bun test --coverage",
"lint": "prettier --write . && eslint --fix ./src"
},
"dependencies": {},
"peerDependencies": {
"hono": ">=3"
},
"devDependencies": {
"hono": "^3.11.10",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"LICENSE",
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/willin/api.git"
},
"keywords": [
"hono",
"powered",
"by",
"middleware"
],
"author": "Willin Wang <willin@willin.org> (https://willin.wang/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willin/api/issues"
},
"homepage": "https://github.com/willin/api#readme",
"publishConfig": {
"access": "public"
}
}