mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
304042017c
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
41 lines
1.1 KiB
JSON
41 lines
1.1 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": "1.0.1",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"@scalar/openapi-parser": "^0.10.4",
|
|
"@scalar/openapi-types": "^0.1.6",
|
|
"swagger2openapi": "^7.0.8",
|
|
"yaml": "1.10.2"
|
|
},
|
|
"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"
|
|
]
|
|
}
|