@elysiajs/swagger
Advanced tools
Comparing version 1.0.0-beta.2 to 1.0.0-rc.0
108
package.json
{ | ||
"name": "@elysiajs/swagger", | ||
"version": "1.0.0-beta.2", | ||
"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": { | ||
"bun": "./dist/index.js", | ||
"node": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./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 --watch example/index.ts", | ||
"test": "bun test && npm run test:node", | ||
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", | ||
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json", | ||
"release": "npm run build && npm run test && npm publish --access public" | ||
}, | ||
"peerDependencies": { | ||
"elysia": ">= 1.0.0-beta.9" | ||
}, | ||
"devDependencies": { | ||
"@apidevtools/swagger-parser": "^10.1.0", | ||
"@scalar/api-reference": "^1.12.5", | ||
"@types/bun": "^1.0.4", | ||
"@types/lodash.clonedeep": "^4.5.7", | ||
"@types/node": "^20.1.4", | ||
"elysia": "1.0.0-beta.9", | ||
"eslint": "^8.40.0", | ||
"rimraf": "4.3", | ||
"typescript": "^5.0.4" | ||
}, | ||
"dependencies": { | ||
"lodash.clonedeep": "^4.5.0", | ||
"openapi-types": "^12.1.3" | ||
} | ||
} | ||
"name": "@elysiajs/swagger", | ||
"version": "1.0.0-rc.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": { | ||
"bun": "./dist/index.js", | ||
"node": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./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 --watch example/index.ts", | ||
"test": "bun test && npm run test:node", | ||
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", | ||
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json", | ||
"release": "npm run build && npm run test && npm publish --access public" | ||
}, | ||
"peerDependencies": { | ||
"elysia": ">= 1.0.0-rc.0" | ||
}, | ||
"devDependencies": { | ||
"@apidevtools/swagger-parser": "^10.1.0", | ||
"@scalar/api-reference": "^1.12.5", | ||
"@types/bun": "^1.0.4", | ||
"@types/lodash.clonedeep": "^4.5.7", | ||
"@types/node": "^20.1.4", | ||
"elysia": "1.0.0-rc.0", | ||
"eslint": "^8.40.0", | ||
"rimraf": "4.3", | ||
"typescript": "^5.0.4" | ||
}, | ||
"dependencies": { | ||
"lodash.clonedeep": "^4.5.0", | ||
"openapi-types": "^12.1.3" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
159623