{
  "name": "openai-realtime-api",
  "version": "1.0.8",
  "description": "TypeScript client OpenAI's realtime voice API.",
  "author": "Travis Fischer <travis@transitivebullsh.it>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/transitive-bullshit/openai-realtime-api.git"
  },
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "main": "./dist/index.js",
  "source": "./src/index.ts",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "default": "./dist/node/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "nanoid": "^5.0.8",
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@fisch0920/eslint-config": "^1.4.0",
    "@total-typescript/ts-reset": "^0.6.1",
    "@types/node": "^22.8.6",
    "@types/ws": "^8.5.12",
    "audio-decode": "^2.2.2",
    "dotenv": "^16.4.5",
    "eslint": "^8.57.1",
    "npm-run-all2": "^7.0.1",
    "prettier": "^3.3.3",
    "tsup": "^8.3.5",
    "typescript": "^5.6.3",
    "vitest": "2.1.4"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "pretest": "run-s build",
    "test": "run-s test:*",
    "test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
    "test:lint": "eslint .",
    "test:typecheck": "tsc --noEmit",
    "test-unit": "vitest run"
  }
}