honojs-middleware/packages/swagger-editor/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@hono/swagger-editor",
2024-11-05 10:03:08 +08:00
"version": "1.0.0",
"description": "A middleware for using Swagger Editor in Hono",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"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": {
"hono": "^3.11.7",
"tsup": "^7.2.0",
"vitest": "^3.0.8"
}
2024-11-08 03:50:24 +08:00
}