{
  "name": "@diegoaltoworks/talker",
  "version": "0.63.0",
  "description": "Telephony plugin for Chatter: adds voice call, SMS and WhatsApp support via Twilio",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./twilio": {
      "types": "./dist/adapters/twilio.d.ts",
      "import": "./dist/adapters/twilio.mjs",
      "require": "./dist/adapters/twilio.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "prompts",
    "language",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "bun --watch src/index.ts",
    "build": "bun run build:clean && bun run build:types && bun run build:esm && bun run build:cjs",
    "build:clean": "rm -rf dist",
    "build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist",
    "build:esm": "esbuild src/index.ts src/adapters/twilio.ts --bundle --format=esm --define:__dirname=import.meta.dirname --outdir=dist --outbase=src --out-extension:.js=.mjs --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@diegoaltoworks/chatter/* --external:@libsql/client --platform=node --target=node24",
    "build:cjs": "esbuild src/index.ts src/adapters/twilio.ts --bundle --format=cjs --outdir=dist --outbase=src --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@diegoaltoworks/chatter/* --external:@libsql/client --platform=node --target=node24",
    "check:bundle-budgets": "bun scripts/bundle-budgets.ts",
    "check:em-dashes": "bun scripts/check-em-dashes.ts",
    "check:deprecations": "bun scripts/deprecations.ts",
    "test": "bun test",
    "test:unit": "bun test src/",
    "test:integration": "bun test test/integration/**/*.test.ts",
    "test:packaged": "bash scripts/smoke-packed-install.sh",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "security:audit": "bun audit",
    "security:audit:fix": "bun update",
    "security:check": "bun audit --audit-level=moderate",
    "check": "bun run typecheck && bun run lint && bun run test && bun run security:check && bun run check:em-dashes && bun run check:deprecations",
    "work": "bun ./.claude/work.ts run",
    "work:continuous": "bun ./.claude/work.ts run --continuous",
    "work:status": "bun ./.claude/work.ts status",
    "work:reset": "bun ./.claude/work.ts reset",
    "work:watch": "bun ./.claude/work.ts watch",
    "work:resume": "bun ./.claude/work.ts resume",
    "work:halt": "bun ./.claude/work.ts halt",
    "prepublishOnly": "bun run lint && bun run typecheck && bun run test && bun run security:check && bun run check:em-dashes && bun run check:deprecations && bun run build",
    "prepare": "(husky || true) && bun run build"
  },
  "keywords": [
    "telephony",
    "twilio",
    "voice",
    "sms",
    "chatbot",
    "chatter",
    "twiml",
    "conversational-ai",
    "ivr",
    "phone"
  ],
  "author": "Diego Alto <diego@diegoalto.works>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/diegoaltoworks/talker.git"
  },
  "bugs": {
    "url": "https://github.com/diegoaltoworks/talker/issues"
  },
  "homepage": "https://github.com/diegoaltoworks/talker#readme",
  "engines": {
    "node": ">=24.0.0"
  },
  "peerDependencies": {
    "@diegoaltoworks/chatter": ">=0.32.0 <2",
    "@libsql/client": ">=0.6.0 <1",
    "hono": "^4.12.34 || ^5.0.0",
    "openai": "^4.0.0 || ^7.1.0"
  },
  "peerDependenciesMeta": {
    "@diegoaltoworks/chatter": {
      "optional": true
    },
    "@libsql/client": {
      "optional": true
    },
    "openai": {
      "optional": true
    }
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.6",
    "@diegoaltoworks/chatter": "^0.61.0",
    "@libsql/client": "^0.17.0",
    "@types/bun": "^1.1.12",
    "@types/node": "^26.1.2",
    "esbuild": "^0.28.0",
    "hono": "^4.13.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.8",
    "openai": "^7.1.0",
    "typescript": "^7.0.2"
  },
  "lint-staged": {
    "*.{ts,js,json,md}": [
      "biome check --write --no-errors-on-unmatched"
    ],
    "*.ts": [
      "bash -c 'tsc --noEmit --skipLibCheck'"
    ]
  },
  "overrides": {
    "qs": "^6.15.3",
    "ws": "^8.21.1",
    "@hono/node-server": "^2.0.5",
    "fast-uri": "^3.1.3",
    "ip-address": "^10.4.0",
    "form-data": "^4.0.6",
    "yaml": "^2.8.3",
    "path-to-regexp": "^8.4.0",
    "picomatch": "^4.0.4"
  }
}
