{
  "name": "fimo",
  "version": "0.6.0",
  "description": "Fimo CLI - create, deploy, and manage Fimo projects",
  "bin": {
    "fimo": "dist/cli/index.js"
  },
  "files": [
    "dist/",
    "assets/",
    "scripts/",
    "templates/",
    "README.md",
    "release.json"
  ],
  "type": "module",
  "exports": {
    "./package.json": "./package.json",
    "./ui": {
      "types": "./dist/runtime/index.d.ts",
      "import": "./dist/runtime/index.js"
    },
    "./react-router": {
      "types": "./dist/runtime/react-router/index.d.ts",
      "import": "./dist/runtime/react-router/index.js"
    },
    "./react-router/routes": {
      "types": "./dist/runtime/react-router/routes.d.ts",
      "import": "./dist/runtime/react-router/routes.js"
    },
    "./paths": {
      "types": "./dist/runtime/paths/index.d.ts",
      "import": "./dist/runtime/paths/index.js"
    },
    "./vite": {
      "types": "./dist/build/vite/index.d.ts",
      "import": "./dist/build/vite/index.js"
    },
    "./templates": {
      "types": "./dist/runtime/templates.d.ts",
      "import": "./dist/runtime/templates.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm run clean && tsc -b tsconfig.json && chmod +x dist/cli/index.js",
    "build:bundle": "node scripts/bundle-cli.mjs",
    "check:types": "tsc -b tsconfig.json",
    "start": "tsx src/cli/index.ts",
    "install-cli": "pnpm build && node scripts/install-cli.mjs",
    "publish:npm": "node scripts/publish-npm.mjs",
    "prepublishOnly": "pnpm run build && pnpm run build:bundle",
    "release:bump": "node scripts/bump-version.mjs",
    "publish:dry-run": "npm publish --dry-run",
    "postinstall": "node scripts/postinstall.mjs",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist *.tsbuildinfo"
  },
  "dependencies": {
    "@clack/core": "^1.2.0",
    "@clack/prompts": "^1.2.0",
    "@rollup/pluginutils": "^5.1.0",
    "agent-install": "^0.0.5",
    "better-auth": "1.4.18",
    "change-case": "^5.4.4",
    "cheerio": "^1.0.0",
    "commander": "^13.1.0",
    "eta": "^3.5.0",
    "lucide-react": "^0.577.0",
    "open": "^10.1.2",
    "oxc-parser": "^0.118.0",
    "react-error-boundary": "^6.0.0",
    "yaml": "2.8.2",
    "zod": "4.1.8"
  },
  "devDependencies": {
    "@fimo/agents-bundle": "workspace:*",
    "@fimo/api-contracts": "workspace:*",
    "@fimo/cli-kit": "workspace:*",
    "@fimo/tsconfig": "workspace:*",
    "@tanstack/react-query": "^5.80.6",
    "@types/node": "^22.15.29",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "esbuild": "^0.25.10",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "react-router": "^7.15.1",
    "tsx": "^4.19.4",
    "typescript": "5.9.2",
    "vite": "^8.0.13",
    "vitest": "^4.1.6",
    "wrangler": "^4.83.0"
  },
  "peerDependencies": {
    "@tanstack/react-query": "^5.80.6",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "react-router": "^7.0.0 || ^8.0.0",
    "vite": "^7.0.0 || ^8.0.0"
  },
  "engines": {
    "node": ">=20.12.0"
  }
}
