{
  "name": "@just-every/task",
  "version": "0.2.16",
  "description": "Task - A Thoughtful Task Loop",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/just-every/task.git"
  },
  "keywords": [
    "llm",
    "ai",
    "task",
    "ensemble",
    "chain-of-thought",
    "meta-cognition",
    "orchestration",
    "artificial-intelligence",
    "machine-learning",
    "gpt",
    "claude",
    "model-rotation",
    "performance-optimization",
    "agent-framework",
    "typescript"
  ],
  "author": "just-every",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/just-every/task/issues"
  },
  "homepage": "https://github.com/just-every/task#readme",
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "vitest",
    "test:run": "vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "test:integration": "vitest run test/integration.test.ts",
    "test:performance": "vitest run test/performance.test.ts",
    "test:e2e": "vitest run test/e2e.test.ts",
    "lint": "tsc --noEmit",
    "typecheck": "tsc --noEmit",
    "validate": "npm run typecheck && npm run test:run",
    "prepare": "npm run build",
    "prepublishOnly": "npm run validate",
    "example": "npm run build && node --experimental-vm-modules dist/examples/basic-example.js",
    "example:simple": "npm run build && node --experimental-vm-modules examples/simple-mind.js",
    "example:meta": "npm run build && node --experimental-vm-modules examples/meta-cognition.js",
    "dev": "npm run build:watch",
    "start": "npm run example",
    "debug": "npm run build && TASK_DEBUG=true TASK_LOG_LEVEL=debug npm run example",
    "performance": "npm run build && npm run test:performance",
    "release": "./scripts/release.sh",
    "release:patch": "./scripts/release.sh patch",
    "release:minor": "./scripts/release.sh minor",
    "release:major": "./scripts/release.sh major",
    "release:quick": "./scripts/release-quick.sh"
  },
  "dependencies": {
    "@just-every/ensemble": "^0.2.35"
  },
  "peerDependencies": {
    "anthropic": ">=0.20.0",
    "openai": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "openai": {
      "optional": true
    },
    "anthropic": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^22.15.30",
    "@vitest/coverage-v8": "^3.2.3",
    "typescript": "^5.8.3",
    "vitest": "^3.2.3"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "IMPROVEMENTS.md",
    "examples",
    "CLAUDE.md"
  ],
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/just-every"
  },
  "config": {
    "commitizen": {
      "path": "conventional-changelog"
    }
  }
}
