honojs-middleware/packages/bun-transpiler/package.json

44 lines
1.0 KiB
JSON
Raw Normal View History

{
"name": "@hono/bun-transpiler",
2024-01-12 04:05:32 +08:00
"version": "0.2.0",
"description": "Bun Transpiler Middleware for Hono",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"build": "tsup ./src/index.ts --format esm,cjs --dts --external bun",
"publint": "publint",
"release": "yarn build && yarn test && yarn publint && yarn publish"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware.git"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"hono": "*"
},
"devDependencies": {
"@types/bun": "^1.0.0",
"hono": "^3.11.7",
"tsup": "^8.0.1",
"vitest": "^1.0.4"
}
}