{
  "name": "@yefengr/remote-pi",
  "version": "0.9.9",
  "publishConfig": {
    "access": "public"
  },
  "description": "Browser PWA remote control for Pi coding agent endpoints over a Relay.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "pi",
    "pi-package",
    "pi-extension",
    "pi-coding-agent",
    "remote-control",
    "browser",
    "pwa",
    "coding-agent",
    "endpoint",
    "qr-pairing",
    "websocket"
  ],
  "pi": {
    "extensions": [
      "./dist"
    ],
    "image": "https://raw.githubusercontent.com/jacobaraujo7/remote_pi/main/branding/banner.png"
  },
  "author": "Jacob Moura <jacobmoura7@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jacobaraujo7/remote_pi.git",
    "directory": "pi-extension"
  },
  "homepage": "https://remote-pi.jacobmoura.work",
  "bugs": {
    "url": "https://github.com/jacobaraujo7/remote_pi/issues"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "0.84.4",
    "@types/node": "25.9.4",
    "@types/ws": "^8.18.1",
    "tsx": "^4.22.0",
    "typescript": "6.0.3",
    "vite": "8.2.2",
    "vitest": "4.1.11",
    "@remote-pi/protocol": "0.0.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "dependencies": {
    "@napi-rs/keyring": "^1.3.0",
    "@noble/ed25519": "3.1.0",
    "qrcode-terminal": "^0.12.0",
    "typebox": "^1.1.38",
    "ws": "^8.21.0",
    "zod": "4.4.3"
  },
  "scripts": {
    "build": "pnpm --filter @remote-pi/protocol build && tsc && node scripts/vendor-protocol.mjs",
    "typecheck": "tsc --noEmit",
    "dev": "tsx src/index.ts",
    "test": "vitest run --exclude \"scripts/**\" && node --test scripts/*.test.mjs",
    "verify": "pnpm typecheck && pnpm test && pnpm build",
    "publish:npm": "bash ./publish-npm.sh"
  }
}