{
  "name": "@synctek/qaatlas",
  "version": "2.3.0",
  "description": "AI-powered test plan generator that analyzes code diffs and produces risk assessments and coverage maps",
  "main": "dist/cli/index.js",
  "bin": {
    "qaatlas": "dist/cli/index.js"
  },
  "type": "module",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/cli/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:integration": "vitest run src/core/__tests__/gap-analyzer.integration.test.ts",
    "test:update-goldens": "UPDATE_GOLDENS=true vitest run src/core/__tests__/gap-analyzer.integration.test.ts",
    "test:verify-goldens": "vitest run src/core/__tests__/gap-analyzer.integration.test.ts",
    "gap-analysis": "node dist/cli/index.js gap-analysis",
    "validate:palace": "npx tsx scripts/validate-palace.ts",
    "lint": "eslint src --ext .ts",
    "clean": "rm -rf dist bin/bundle.cjs",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build && npm test",
    "embed-version": "node -e \"const fs=require('fs');const v=require('./package.json').version;const f='dist/cli/index.js';let c=fs.readFileSync(f,'utf8');c=c.replace('__QAATLAS_VERSION__',v);fs.writeFileSync(f,c);console.log('Embedded version '+v)\"",
    "bundle": "npm run embed-version && esbuild dist/cli/index.js --bundle --platform=node --target=node20 --format=cjs --outfile=bin/bundle.cjs --external:fsevents",
    "sea:prepare": "npm run bundle && node --experimental-sea-config sea-config.json",
    "pkg:macos-arm64": "bash scripts/build-sea.sh 1.0.6 darwin arm64",
    "pkg:macos-x64": "bash scripts/build-sea.sh 1.0.6 darwin x64",
    "pkg:linux-x64": "bash scripts/build-sea.sh 1.0.6 linux x64",
    "pkg:linux-arm64": "bash scripts/build-sea.sh 1.0.6 linux arm64",
    "pkg:win-x64": "echo 'Windows SEA build requires Windows runner'",
    "pkg:all": "npm run build && npm run pkg:macos-arm64 && npm run pkg:macos-x64 && npm run pkg:linux-x64 && npm run pkg:linux-arm64",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "keywords": [
    "testing",
    "qa",
    "test-plan",
    "code-analysis",
    "ai",
    "llm",
    "claude",
    "anthropic",
    "diff",
    "coverage",
    "risk-assessment",
    "ci-cd",
    "github-actions",
    "pull-request",
    "swift",
    "ios",
    "gap-analysis",
    "test-coverage"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SyncTek-LLC/qaatlas.git"
  },
  "bugs": {
    "url": "https://github.com/SyncTek-LLC/qaatlas/issues"
  },
  "homepage": "https://github.com/SyncTek-LLC/qaatlas#readme",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.39.0",
    "commander": "^12.1.0",
    "js-yaml": "^4.1.0",
    "minimatch": "^10.0.1",
    "openai": "^4.77.0",
    "pino": "^9.6.0",
    "pino-pretty": "^13.0.0",
    "zod": "^3.24.1",
    "zod-to-json-schema": "^3.24.1"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.10.7",
    "esbuild": "^0.20.0",
    "postject": "^1.0.0-alpha.6",
    "typescript": "^5.7.3",
    "vitest": "^2.1.8"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "schemas",
    "examples"
  ],
  "pkg": {
    "assets": [
      "schemas/**/*"
    ],
    "outputPath": "bin"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
