← back to Jevrun Runner

package.json

22 lines

{
  "name": "jevrun-runner",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "description": "Persistent keep-alive HTTP service + global `jevrun` CLI wrapping jevrun's run(page, prompt) on a live Playwright browser.",
  "bin": {
    "jevrun": "./bin/jevrun.mjs"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "start": "node index.mjs",
    "health": "curl -fsS http://127.0.0.1:9788/health"
  },
  "dependencies": {
    "jevrun": "0.0.2",
    "playwright": "^1.63.0"
  }
}