mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
b647538e41
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
{
|
|
"name": "@gitbook/openapi-parser",
|
|
"description": "Modern OpenAPI parser written in TypeScript with support for OpenAPI 3.1, OpenAPI 3.0 and Swagger 2.0.",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"development": "./src/index.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"version": "2.1.2",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"@scalar/openapi-parser": "^0.10.10",
|
|
"@scalar/openapi-types": "^0.1.9"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@tsconfig/node20": "^20.1.4",
|
|
"@types/swagger2openapi": "^7.0.4",
|
|
"bun-types": "^1.1.20",
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"unit": "bun test",
|
|
"dev": "bun run build -- --watch",
|
|
"clean": "rm -rf ./dist"
|
|
},
|
|
"files": ["dist", "src", "README.md", "CHANGELOG.md"]
|
|
}
|