{
  "name": "polaris-framework",
  "version": "2.1.0",
  "description": "Multi-agent decision-making framework with flat inference and a 4-layer creative pipeline",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/src/index.js",
      "require": "./dist/src/index.js",
      "types": "./dist/src/index.d.ts"
    }
  },
  "files": [
    "dist/src/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "pnpm run clean && tsc",
    "dev": "tsc --watch",
    "test": "pnpm run build && node test/run-tests.js",
    "test:basic": "pnpm run build && node test/run-tests.js --domain=basic",
    "test:inference": "pnpm run build && node test/run-tests.js --domain=inference",
    "test:philosophy": "pnpm run build && node test/run-tests.js --domain=philosophy",
    "test:chess": "pnpm run build && node test/run-tests.js --domain=chess",
    "test:pipeline": "pnpm run build && node test/run-tests.js --domain=pipeline",
    "test:examples": "pnpm run build && node dist/examples/basic-usage.js",
    "test:debug": "pnpm run build && node test/run-tests.js --debug",
    "demo": "pnpm run build && node test/quick-demo.js",
    "demo:pipeline": "pnpm run build && node dist/examples/pipeline-demo.js",
    "type-check": "tsc --noEmit",
    "clean": "rimraf dist",
    "lint": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts examples/**/*.ts test/**/*.js",
    "prepublishOnly": "pnpm run build && pnpm run type-check",
    "version": "pnpm run build && git add -A dist",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "ai",
    "multi-agent",
    "agent-based",
    "decision-making",
    "creative-pipeline",
    "polaris",
    "llm",
    "openai",
    "anthropic",
    "strategy-pattern",
    "bias-detection"
  ],
  "author": "Diego Vallejo",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/DiegoVallejoDev/Polaris.git"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.65.0",
    "@google/genai": "^1.22.0",
    "dotenv": "^16.6.1",
    "openai": "^6.0.1"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
