Files
elysia-swagger/package.json
2023-01-27 23:25:58 +07:00

51 lines
1.3 KiB
JSON

{
"name": "@elysiajs/swagger",
"version": "0.2.0",
"description": "Plugin for Elysia to auto-generate Swagger page",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./src/index.ts",
"keywords": [
"elysia",
"swagger"
],
"homepage": "https://github.com/elysiajs/elysia-swagger",
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-swagger"
},
"bugs": "https://github.com/elysiajs/elysia-swagger/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"test": "bun wiptest",
"build": "rimraf dist && tsc --project tsconfig.esm.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"peerDependencies": {
"elysia": ">= 0.2.0-rc.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"@types/swagger-ui-dist": "^3.30.1",
"bun-types": "^0.5.0",
"eslint": "^8.26.0",
"elysia": "../elysia",
"typescript": "^4.9.3"
},
"dependencies": {
"@elysiajs/static": "0.2.0-rc.0",
"swagger-ui-dist": "^4.15.5"
}
}