2024-11-05 10:00:20 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/swagger-editor",
|
2024-11-05 10:03:08 +08:00
|
|
|
"version": "1.0.0",
|
2024-11-05 10:00:20 +08:00
|
|
|
"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": "^0.34.5"
|
|
|
|
}
|
|
|
|
}
|