{
  "name": "@proofkit/typegen",
  "version": "1.1.5",
  "description": "",
  "type": "module",
  "main": "dist/esm/index.js",
  "bin": {
    "typegen": "./dist/esm/cli.js"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      }
    },
    "./config": {
      "import": {
        "types": "./dist/esm/types.d.ts",
        "default": "./dist/esm/types.js"
      }
    },
    "./webui-server": {
      "import": {
        "types": "./dist/esm/server/app.d.ts",
        "default": "./dist/esm/server/app.js"
      }
    },
    "./cli": {
      "import": {
        "types": "./dist/esm/cli.d.ts",
        "default": "./dist/esm/cli.js"
      }
    },
    "./src/types.ts": "./src/types.ts",
    "./package.json": "./package.json"
  },
  "keywords": [
    "proofkit",
    "typegen",
    "fmdapi",
    "proofgeist",
    "proofsh",
    "filemaker",
    "fmrest"
  ],
  "files": [
    "dist",
    "src",
    "stubs",
    "bin"
  ],
  "author": "",
  "license": "ISC",
  "homepage": "https://proofkit.proof.sh",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/proofsh/proofkit.git"
  },
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "@commander-js/extra-typings": "^14.0.0",
    "@hono/node-server": "^1.19.8",
    "@hono/zod-validator": "^0.7.6",
    "@tanstack/vite-config": "^0.2.1",
    "chalk": "5.4.1",
    "commander": "^14.0.2",
    "dotenv": "^16.6.1",
    "execa": "^9.6.1",
    "fast-xml-parser": "^5.3.3",
    "fs-extra": "^11.3.3",
    "hono": "^4.11.3",
    "jsonc-parser": "^3.3.1",
    "open": "^10.2.0",
    "prettier": "^3.7.4",
    "semver": "^7.7.3",
    "ts-morph": "^26.0.0",
    "ts-toolbelt": "^9.6.0",
    "vite": "^6.4.1",
    "zod": "^4.3.5",
    "@proofkit/fmdapi": "5.2.1",
    "@proofkit/fmodata": "0.1.2"
  },
  "devDependencies": {
    "@tanstack/intent": "^0.0.19",
    "@types/fs-extra": "^11.0.4",
    "@types/semver": "^7.7.1",
    "concurrently": "^8.2.2",
    "nodemon": "^3.1.11",
    "publint": "^0.3.16",
    "type-fest": "^3.13.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.17"
  },
  "scripts": {
    "dev": "pnpm build:watch",
    "dev:ui": "concurrently -n \"web,api\" -c \"cyan,magenta\" \"pnpm -C web dev\" \"pnpm run dev:api\"",
    "dev:api": "concurrently -n \"build,server\" -c \"cyan,magenta\" \"pnpm build:watch\" \"nodemon --watch dist/esm --delay 1 --exec 'node dist/esm/cli.js ui --port 3141 --no-open'\"",
    "test": "vitest run --config vitest.config.ts",
    "test:watch": "vitest --watch --config vitest.config.ts",
    "test:e2e": "varlock run -- vitest run --config vitest.e2e.config.ts",
    "typecheck": "tsc --noEmit",
    "build": "pnpm -C web build && pnpm vite build && node scripts/build-copy.js && publint --strict",
    "build:watch": "vite build --watch",
    "ci": "pnpm run build && pnpm run test",
    "lint": "biome check . --write",
    "lint:summary": "biome check . --reporter=summary",
    "generate:schema": "tsx scripts/generate-schema.ts"
  }
}