{
  "name": "claude-symphony",
  "version": "1.2.0",
  "description": "One command. Production-grade software. From idea to deployment, automatically.",
  "type": "module",
  "main": "./dist/core/index.js",
  "types": "./dist/core/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/core/index.js",
      "types": "./dist/core/index.d.ts"
    },
    "./core": {
      "import": "./dist/core/index.js",
      "types": "./dist/core/index.d.ts"
    }
  },
  "bin": {
    "claude-symphony": "./dist/cli/index.js"
  },
  "files": [
    "dist/",
    "template/",
    "schemas/"
  ],
  "scripts": {
    "build": "tsup && npm run build:schema",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build",
    "build:schema": "tsx scripts/dev/build-schema.ts",
    "migrate:jsonc": "tsx scripts/dev/migrate-yaml-to-jsonc.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:pipeline": "tsx scripts/test/test-pipeline.ts",
    "test:mcp-fallback": "tsx scripts/test/test-mcp-fallback.ts",
    "test:quota": "tsx scripts/test/test-quota-management.ts",
    "benchmark": "tsx scripts/benchmark-agents.ts",
    "validate:env": "tsx scripts/user/validate-env.ts",
    "rollback": "tsx scripts/user/rollback.ts"
  },
  "keywords": [
    "ai",
    "auto-pilot",
    "pipeline",
    "claude",
    "claude-code",
    "code-generation",
    "development-automation",
    "orchestration",
    "production",
    "symphony"
  ],
  "author": "znehraks@gmail.com",
  "license": "MIT",
  "engines": {
    "node": ">=20.12.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/znehraks/claude-symphony"
  },
  "bugs": {
    "url": "https://github.com/znehraks/claude-symphony/issues"
  },
  "homepage": "https://github.com/znehraks/claude-symphony#readme",
  "dependencies": {
    "@inquirer/prompts": "^7.10.1",
    "chalk": "^5.4.1",
    "commander": "^13.1.0",
    "execa": "^9.5.2",
    "js-yaml": "^4.1.0",
    "jsonc-parser": "^3.3.1",
    "ora": "^8.1.1",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.10.7",
    "@vitest/coverage-v8": "^4.0.18",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.3",
    "vitest": "^4.0.18",
    "zod-to-json-schema": "^3.24.1"
  }
}
