mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
7b34537bbe
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
35 lines
1.0 KiB
JSON
35 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": "3.0.2",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"@scalar/json-magic": "^0.3.1",
|
|
"@scalar/openapi-parser": "^0.20.1",
|
|
"@scalar/openapi-types": "^0.3.7"
|
|
},
|
|
"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"]
|
|
}
|