{
  "name": "ework-daemon",
  "version": "0.4.102",
  "description": "Issue-driven AI development daemon. Spawns opencode subprocesses to resolve Gitea issues.",
  "module": "src/index.ts",
  "type": "module",
  "license": "MIT",
  "author": "dog and contributors",
  "repository": {
    "type": "git",
    "url": "https://github.com/ranxianglei/ework-daemon.git"
  },
  "homepage": "https://github.com/ranxianglei/ework-daemon",
  "bugs": {
    "url": "https://github.com/ranxianglei/ework-daemon/issues"
  },
  "keywords": [
    "issue-driven",
    "ai-agent",
    "opencode",
    "gitea",
    "automation",
    "daemon",
    "bridge"
  ],
  "bin": {
    "ework-daemon": "./src/cli.ts",
    "ework-daemon-server": "./bin/ework-daemon-server.js"
  },
  "files": [
    "src",
    "bin",
    "scripts/ework-daemon.service",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "bun": ">=1.1.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "setup": "bun run scripts/setup.ts",
    "start": "bun --env-file=.env.test run src/index.ts",
    "start:prod": "bun --env-file=.env run src/index.ts",
    "dev": "bun --env-file=.env.test --watch src/index.ts",
    "dev:prod": "bun --env-file=.env --watch src/index.ts",
    "check": "tsc --noEmit",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "test:gitea": "bun run scripts/test-gitea.ts",
    "test:mysql": "bash scripts/test-mysql.sh",
    "build": "bun build src/cli.ts --compile --outfile ework-daemon",
    "install-global": "bun run build && cp ework-daemon ~/.local/bin/"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "mysql2": "^3.23.1",
    "zod": "^4.4.3"
  }
}