{
  "name": "teleportation-cli",
  "version": "1.5.0",
  "description": "Remote approval system for Claude Code - approve AI coding changes from your phone",
  "type": "module",
  "main": "teleportation-cli.cjs",
  "bin": {
    "teleportation": "teleportation-cli.cjs"
  },
  "engines": {
    "bun": "^1.3.0"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dundas/teleportation-private.git"
  },
  "homepage": "https://github.com/dundas/teleportation-private#readme",
  "bugs": {
    "url": "https://github.com/dundas/teleportation-private/issues"
  },
  "keywords": [
    "claude",
    "claude-code",
    "remote-control",
    "approval",
    "mobile",
    "ai",
    "coding-assistant",
    "cli"
  ],
  "author": "Dundas",
  "scripts": {
    "test": "bun --bun vitest run",
    "test:ci": "bun test lib/utils/log-sanitizer.test.js lib/utils/logger.test.js",
    "test:watch": "bun --bun vitest",
    "test:coverage": "bun --bun vitest --coverage",
    "test:e2e": "bun --bun vitest run tests/e2e",
    "test:unit": "bun --bun vitest run tests/unit",
    "test:integration": "bun --bun vitest run tests/integration",
    "test:local": "RELAY_URL=http://localhost:3030 bun --bun vitest run tests/integration",
    "test:prod": "RELAY_URL=https://api.teleportation.dev bun --bun vitest run tests/integration",
    "test:production": "bun --bun vitest run tests/production",
    "dev:relay": "cd relay && bun run dev",
    "dev:mobile": "cd mobile-ui && bun run dev",
    "dev:all": "bun run dev:relay & bun run dev:mobile",
    "prepublishOnly": "bun --bun vitest run"
  },
  "files": [
    "lib/**/*.js",
    "!lib/**/*.test.js",
    "!lib/**/*.test.mjs",
    "!lib/**/test-*.js",
    "!lib/**/vitest.config.js",
    "!lib/**/*.log",
    ".claude/hooks/*.mjs",
    "!.claude/hooks/*.test.mjs",
    ".gemini/hooks/*.mjs",
    "!.gemini/hooks/*.test.mjs",
    "!.gemini/hooks/test-hooks.mjs",
    ".gemini/hooks/shared/*.mjs",
    "teleportation.uhr.json",
    "scripts/sync-transcripts.sh",
    "teleportation-cli.cjs",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@vitest/coverage-v8": "^4.0.9",
    "axios": "^1.13.2",
    "playwright": "^1.57.0",
    "vitest": "^4.0.9"
  },
  "dependencies": {
    "@derivativelabs/agent-process": "github:dundas/agent-process",
    "dotenv": "^17.2.3",
    "uhr": "github:dundas/uhr"
  }
}
