{
    "name": "@theorchard/openapi-typegen-cli",
    "version": "1.0.0",
    "description": "CLI tool to generate TypeScript types from OpenAPI schemas",
    "author": "The Orchard",
    "license": "ISC",
    "engines": {
        "node": ">=23"
    },
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "bin": {
        "openapi-typegen-cli": "./dist/bin.cjs"
    },
    "directories": {
        "lib": "dist"
    },
    "files": [
        "dist"
    ],
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/eslint-config-ts-prettier"
    },
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "scripts": {
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm build:esm",
        "clean": "rm -rf dist && rm -rf .cache",
        "dev": "tsx src/bin.cts",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx src",
        "typecheck": "tsc --noEmit -p tsconfig.json",
        "test:unit": "vitest",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "@inkjs/ui": "2.0.0",
        "dotenv": "17.4.2",
        "ink": "5.2.1",
        "openapi-typescript": "7.13.0",
        "react": "18.2.0"
    },
    "devDependencies": {
        "@types/react": "18.3.28",
        "ink-testing-library": "4.0.0",
        "tsx": "4.22.4"
    },
    "peerDependencies": {
        "typescript": ">=5.4.0"
    }
}
