{
  "name": "@windagency/valora",
  "version": "3.0.3",
  "description": "VALORA - AI-assisted development workflow orchestration with agnostic multi-LLM support, session-based state, and Cursor MCP integration",
  "keywords": [
    "valora",
    "ai",
    "llm",
    "orchestration",
    "workflow",
    "session-based",
    "cli",
    "automation",
    "mcp",
    "typescript",
    "anthropic",
    "openai",
    "google",
    "cursor"
  ],
  "author": "Damien TIVELET <damien@wind-agency.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/windagency/valora.ai"
  },
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=22.0.0"
  },
  "volta": {
    "node": "22.21.0",
    "pnpm": "11.7.0"
  },
  "bin": {
    "valora": "bin/valora.js",
    "valora-mcp": "bin/mcp.js"
  },
  "main": "dist/cli/index.js",
  "exports": {
    ".": {
      "import": "./dist/cli/index.js",
      "types": "./dist/cli/index.d.ts"
    },
    "./mcp": {
      "import": "./dist/mcp/server.js",
      "types": "./dist/mcp/server.d.ts"
    }
  },
  "sideEffects": false,
  "directories": {
    "documentation": "documentation",
    "example": "examples",
    "test": "tests"
  },
  "files": [
    "dist/",
    "data/",
    "bin/",
    "scripts/install-cli-tools.sh",
    "scripts/postinstall.mjs"
  ],
  "dependencies": {
    "@anthropic-ai/sdk": "^0.69.0",
    "@anthropic-ai/vertex-sdk": "^0.14.0",
    "@fastify/cors": "^11.1.0",
    "@fastify/helmet": "^13.0.2",
    "@google/generative-ai": "^0.21.0",
    "@modelcontextprotocol/sdk": "^1.27.1",
    "@types/react": "^19",
    "archiver": "^7.0.0",
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "fastify": "^5.7.4",
    "gray-matter": "^4.0.3",
    "ink": "^6.5.1",
    "inquirer": "^10.0.0",
    "nanoid": "^5.0.0",
    "openai": "^4.67.0",
    "ora": "^8.0.0",
    "react": "^19.2.1",
    "tree-sitter-wasms": "0.1.11",
    "undici": "^7.16.0",
    "unzipper": "^0.12.0",
    "vscode-languageserver-protocol": "3.18.0",
    "web-tree-sitter": "^0.24.7",
    "yaml": "^2.4.0",
    "zod": "^3.22.4",
    "@windagency/valora-runtime": "1.0.0"
  },
  "devDependencies": {
    "@eslint/compat": "^2.0.5",
    "@eslint/js": "^9.39.1",
    "@playwright/test": "^1.40.0",
    "@stryker-mutator/core": "^8.7.1",
    "@stryker-mutator/typescript-checker": "^8.7.1",
    "@stryker-mutator/vitest-runner": "^8.7.1",
    "@types/archiver": "^6.0.0",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.0",
    "@types/unzipper": "^0.10.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^1.0.0",
    "arch-unit-ts": "^1.0.9",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-check-file": "^3.3.1",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-perfectionist": "^4.15.1",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-sort": "^4.0.0",
    "eslint-plugin-sort-destructure-keys": "^2.0.0",
    "eslint-plugin-unused-imports": "^4.3.0",
    "execa": "^9.6.1",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "playwright": "^1.40.0",
    "prettier": "^3.2.0",
    "ts-node": "^10.9.0",
    "tsc-alias": "^1.8.16",
    "tsx": "^4.21.0",
    "typescript": "^5.3.3",
    "vitest": "^1.0.0",
    "@windagency/valora-plugin-memory-vault": "1.0.1",
    "@windagency/valora-plugin-api": "1.0.1"
  },
  "scripts": {
    "postinstall": "node scripts/postinstall.mjs || true",
    "clean": "pnpm \"/clean:/\"",
    "clean:build": "rm -rf ./dist/* && rm -f tsconfig.tsbuildinfo && find src -name '*.js' -delete 2>/dev/null; true",
    "clean:coverage": "rm -rf ./coverage",
    "clear": "pnpm \"/clean:/\" && rm -rf ./node_modules",
    "lint": "eslint --color",
    "lint:fix": "eslint --color --fix",
    "docs:validate": "tsx scripts/validate-docs.ts",
    "maintenance:grade": "tsx scripts/maintenance-grade.ts",
    "maintenance:gc": "tsx scripts/maintenance-gc.ts",
    "maintenance:garden": "tsx scripts/maintenance-garden.ts",
    "regression": "tsx scripts/run-regression-suite.ts",
    "regression:capture": "tsx scripts/capture-regression-transcript.ts",
    "beautify": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|md|yml|yaml)\"",
    "beautify:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|md|yml|yaml)\"",
    "preformat": "pnpm packages:format",
    "format": "pnpm beautify:fix && pnpm lint:fix",
    "build:registry": "pnpm exec tsx scripts/generate-plugin-registry.ts",
    "mcp:validate-types": "pnpm exec tsx scripts/generate-mcp-types.ts",
    "mcp:fix-types": "pnpm exec tsx scripts/generate-mcp-types.ts --fix",
    "mcp:test": "pnpm exec tsx scripts/test-mcp-integration.ts",
    "dev": "tsx --env-file-if-exists .env src/cli/index.ts",
    "dev:watch": "tsx watch src/cli/index.ts",
    "dev:mcp": "tsx src/mcp/server.ts",
    "prebuild": "pnpm clean:build",
    "build": "tsc -b && tsc-alias",
    "postbuild": "cp package.json dist/ && cp tsconfig.runtime.json dist/tsconfig.json",
    "build:plugins": "pnpm --filter './packages/**' build",
    "postbuild:plugins": "pnpm build:registry",
    "build:watch": "tsc -b --watch",
    "start": "node dist/cli/index.js",
    "start:mcp": "node dist/mcp/server.js",
    "tsc:check": "tsc -b",
    "pretest:dev": "pnpm format && pnpm tsc:check",
    "test:dev": "vitest run",
    "test:dev:watch": "vitest",
    "pretest": "pnpm format && pnpm tsc:check && pnpm build:plugins",
    "test": "pnpm \"/test:suite:/\"",
    "test:suite:unit": "vitest run --config vitest.config.ts src",
    "test:suite:integration": "vitest run --config vitest.config.ts __tests__/integration",
    "test:suite:e2e": "vitest run --config vitest.config.ts __tests__/e2e",
    "test:suite:acceptance": "vitest run --config vitest.config.ts __tests__/acceptance",
    "test:suite:security": "NODE_OPTIONS='--max-old-space-size=4096' vitest run --config vitest.config.ts __tests__/security",
    "test:suite:performance": "vitest run --config vitest.config.ts __tests__/performance",
    "test:suite:error-scenarios": "vitest run --config vitest.config.ts __tests__/error-scenarios",
    "test:suite:architecture": "vitest run --config vitest.config.ts __tests__/architecture",
    "bench:compression": "tsx scripts/bench-compression.ts",
    "bench:compression:check": "vitest run --config vitest.config.ts __tests__/benchmarks/compression",
    "gen:fixtures": "tsx scripts/gen-compression-fixtures.ts",
    "test:light": "pnpm test:suite:unit && pnpm test:suite:security",
    "test:coverage": "vitest run --coverage",
    "test:ci": "pnpm test && pnpm test:coverage",
    "test:mutation": "stryker run stryker.config.mjs",
    "test:mutation:utils": "stryker run stryker.config.mjs --mutate 'src/utils/*.ts'",
    "test:quick": "pnpm test:suite:unit && pnpm test:suite:integration",
    "test:smoke": "pnpm test:suite:unit --run --reporter=verbose",
    "audit": "pnpm audit",
    "audit:prod": "pnpm audit --prod",
    "audit:fix": "pnpm audit --fix",
    "packages:build": "pnpm -r --filter './packages/*' build",
    "packages:clean": "pnpm -r --filter './packages/*' clean",
    "packages:format": "pnpm -r --filter './packages/*' format",
    "packages:pack": "pnpm -r --filter './packages/*' pack",
    "packages:test": "pnpm -r --filter './packages/*' test"
  }
}