mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2025-12-06 00:36:10 +00:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "@elysiajs/swagger",
|
|
"version": "0.1.0-rc.1",
|
|
"description": "Plugin for Elysia to auto-generate Swagger page",
|
|
"author": {
|
|
"name": "saltyAom",
|
|
"url": "https://github.com/SaltyAom",
|
|
"email": "saltyaom@gmail.com"
|
|
},
|
|
"exports": {
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/index.js",
|
|
"node": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"types": "./dist/index.d.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 && npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
"build:esm": "tsc --project tsconfig.esm.json",
|
|
"release": "npm run build && npm run test && npm publish --access public"
|
|
},
|
|
"peerDependencies": {
|
|
"elysia": ">= 0.1.0-rc.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.7",
|
|
"@types/swagger-ui-dist": "^3.30.1",
|
|
"bun-types": "^0.2.2",
|
|
"eslint": "^8.26.0",
|
|
"elysia": "^0.1.0-rc.1",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/static": "0.1.0-rc.1",
|
|
"openapi-types": "^12.0.2",
|
|
"swagger-ui-dist": "^4.15.5"
|
|
}
|
|
}
|