{ "name": "@hono/swagger-editor", "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" } }