UNPKG

@kubb/cli

Version:

Command-line interface for Kubb, enabling easy generation of TypeScript, React-Query, Zod, and other code from OpenAPI specifications.

90 lines 2.16 kB
{ "name": "@kubb/cli", "version": "4.29.0", "description": "Command-line interface for Kubb, enabling easy generation of TypeScript, React-Query, Zod, and other code from OpenAPI specifications.", "keywords": [ "cli", "command-line", "command-line-tool", "terminal", "typescript", "openapi", "swagger", "oas", "code-generator", "codegen", "sdk-generator", "plugins", "kubb" ], "repository": { "type": "git", "url": "git+https://github.com/kubb-labs/kubb.git", "directory": "packages/cli" }, "license": "MIT", "author": "stijnvanhulle", "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./package.json": "./package.json" }, "types": "./dist/index.d.ts", "bin": { "kubb": "bin/kubb.cjs" }, "files": [ "src", "dist", "bin", "!/**/**.test.**", "!/**/__tests__/**" ], "size-limit": [ { "path": "./dist/*.js", "limit": "510 KiB", "gzip": true } ], "dependencies": { "@clack/prompts": "^1.0.1", "chokidar": "^5.0.0", "citty": "^0.1.6", "cosmiconfig": "^9.0.0", "jiti": "2.5.1", "tinyexec": "^1.0.2", "@kubb/core": "4.29.0" }, "devDependencies": { "source-map-support": "^0.5.21", "@kubb/agent": "4.29.0", "@kubb/mcp": "4.29.0", "@kubb/oas": "4.29.0" }, "engines": { "node": ">=20" }, "preferGlobal": true, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "main": "./dist/index.cjs", "module": "./dist/index.js", "scripts": { "build": "tsdown && size-limit", "clean": "npx rimraf ./dist", "lint": "bun biome lint .", "lint:fix": "bun biome lint --fix --unsafe .", "release": "pnpm publish --no-git-check", "release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check", "start": "tsdown --watch", "test": "vitest --passWithNoTests", "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false" } }