UNPKG

@typespec/openapi3

Version:

TypeSpec library for emitting OpenAPI 3.0 and OpenAPI 3.1 from the TypeSpec REST protocol binding and converting OpenAPI3 to TypeSpec

105 lines 3.21 kB
{ "name": "@typespec/openapi3", "version": "1.3.0", "author": "Microsoft Corporation", "description": "TypeSpec library for emitting OpenAPI 3.0 and OpenAPI 3.1 from the TypeSpec REST protocol binding and converting OpenAPI3 to TypeSpec", "homepage": "https://typespec.io", "readme": "https://github.com/microsoft/typespec/blob/main/README.md", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/microsoft/typespec.git" }, "bugs": { "url": "https://github.com/microsoft/typespec/issues" }, "keywords": [ "typespec" ], "bin": { "tsp-openapi3": "cmd/tsp-openapi3.js" }, "type": "module", "main": "dist/src/index.js", "tspMain": "lib/main.tsp", "exports": { ".": { "typespec": "./lib/main.tsp", "types": "./dist/src/index.d.ts", "default": "./dist/src/index.js" }, "./testing": { "types": "./dist/src/testing/index.d.ts", "default": "./dist/src/testing/index.js" } }, "engines": { "node": ">=20.0.0" }, "files": [ "lib/*.tsp", "dist/**", "!dist/test/**" ], "dependencies": { "@apidevtools/swagger-parser": "~12.0.0", "openapi-types": "~12.1.3", "yaml": "~2.8.0", "@typespec/asset-emitter": "^0.73.0" }, "peerDependencies": { "@typespec/compiler": "^1.3.0", "@typespec/http": "^1.3.0", "@typespec/json-schema": "^1.3.0", "@typespec/openapi": "^1.3.0", "@typespec/versioning": "^0.73.0" }, "peerDependenciesMeta": { "@typespec/json-schema": { "optional": true }, "@typespec/xml": { "optional": true }, "@typespec/versioning": { "optional": true } }, "devDependencies": { "@types/node": "~24.1.0", "@types/yargs": "~17.0.33", "@vitest/coverage-v8": "^3.1.2", "@vitest/ui": "^3.1.2", "c8": "^10.1.3", "cross-env": "~7.0.3", "rimraf": "~6.0.1", "typescript": "~5.8.2", "vitest": "^3.1.2", "@typespec/http": "^1.3.0", "@typespec/compiler": "^1.3.0", "@typespec/library-linter": "^0.73.0", "@typespec/json-schema": "^1.3.0", "@typespec/openapi": "^1.3.0", "@typespec/rest": "^0.73.0", "@typespec/versioning": "^0.73.0", "@typespec/tspd": "^0.72.2", "@typespec/xml": "^0.73.0" }, "scripts": { "clean": "rimraf ./dist ./temp", "build": "pnpm gen-version && pnpm gen-extern-signature && tsc -p . && pnpm lint-typespec-library", "watch": "tsc -p . --watch", "gen-extern-signature": "tspd --enable-experimental gen-extern-signature .", "lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit", "test": "vitest run", "test:watch": "vitest -w", "test:ui": "vitest --ui", "test:ci": "vitest run --coverage --reporter=junit --reporter=default", "lint": "eslint . --max-warnings=0", "lint:fix": "eslint . --fix", "regen-docs": "tspd doc . --enable-experimental --output-dir ../../website/src/content/docs/docs/emitters/openapi3/reference", "regen-specs": "cross-env RECORD=true vitest run", "gen-version": "node scripts/generate-version.js", "api-extractor": "api-extractor run --local --verbose" } }