{
  "name": "runwork",
  "version": "0.28.0",
  "description": "CLI for Runwork: develop, preview, and deploy Runwork apps from your local machine.",
  "license": "UNLICENSED",
  "author": "Runwork, Inc. <info@runwork.ai> (https://www.runwork.ai)",
  "homepage": "https://www.runwork.ai",
  "keywords": [
    "runwork",
    "runworkai",
    "cli",
    "developer-tools",
    "local-development",
    "deploy",
    "preview",
    "full-stack",
    "typescript",
    "ai",
    "ai-agents",
    "vibe",
    "vibe-coding",
    "edge",
    "serverless"
  ],
  "type": "module",
  "bin": {
    "runwork": "./bin/runwork.js"
  },
  "scripts": {
    "prebuild": "cd ../framework && bun run build && cd ../runwork-cli && mkdir -p bundled-types && cp ../framework/dist/*.d.ts bundled-types/ && cp -r ../framework/dist/shared bundled-types/shared 2>/dev/null; cp -r ../framework/dist/task-delegation bundled-types/task-delegation 2>/dev/null; bun run scripts/embed-types.ts",
    "build": "bun run prebuild && bun run scripts/build-bundle.ts",
    "build:binary": "bun run prebuild && bun build src/index.ts --compile --outfile dist/runwork",
    "build:binaries": "bun run scripts/build-binaries.ts",
    "dev": "bun run scripts/build-bundle.ts --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:local": "RUNWORK_TEST_LOCAL_AGENTS=1 vitest run",
    "prepublishOnly": "bun run build",
    "release": "npm publish && npm dist-tag add runwork@$(node -p \"require('./package.json').version\") next",
    "release:binaries": "bun run scripts/release-binaries.ts",
    "release:binaries:upload": "bun run scripts/release-binaries.ts --skip-build",
    "release:full": "bun run release && bun run scripts/release-binaries.ts"
  },
  "dependencies": {
    "isomorphic-git": "^1.41.9",
    "@clack/prompts": "^1.1.0",
    "chokidar": "^4.0.0",
    "commander": "^13.0.0",
    "fflate": "^0.8.2",
    "open": "^10.0.0",
    "picocolors": "^1.1.1",
    "smol-toml": "^1.6.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.7.0",
    "vitest": "^3.2.0"
  },
  "engines": {
    "node": ">=22.5.0",
    "bun": ">=1.3.13"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "dist/**/*.json",
    "bin/",
    "bundled-types/",
    "LICENSE",
    "README.md"
  ]
}
