{
  "name": "elevenlabs-client",
  "version": "0.0.22",
  "private": false,
  "description": "Typesafe and straightforward fetch client for interacting with the ElevenLabs API using feature-fetch",
  "keywords": [],
  "homepage": "https://builder.group/?utm_source=package-json",
  "bugs": {
    "url": "https://github.com/builder-group/community/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/builder-group/community.git"
  },
  "license": "MIT",
  "author": "@bennobuilder",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "source": "./src/index.ts",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "feature-fetch": "0.0.51",
    "@blgc/types": "0.0.19"
  },
  "devDependencies": {
    "@types/node": "^24.3.0",
    "dotenv": "^17.2.1",
    "openapi-typescript": "^7.9.1",
    "@blgc/config": "0.0.37",
    "rollup-presets": "0.0.23"
  },
  "size-limit": [
    {
      "path": "dist/esm/index.js"
    }
  ],
  "scripts": {
    "build": "shx rm -rf dist && rollup -c rollup.config.js",
    "build:prod": "export NODE_ENV=production && pnpm build",
    "clean": "shx rm -rf dist && shx rm -rf .turbo && shx rm -rf node_modules",
    "install:clean": "pnpm run clean && pnpm install",
    "lint": "eslint . --fix",
    "openapi:generate": "npx openapi-typescript ./resources/openapi_v1-0-0.json -o ./src/gen/v1.ts",
    "publish:patch": "pnpm build:prod && pnpm version patch && pnpm publish --no-git-checks --access=public",
    "size": "size-limit --why",
    "start:dev": "tsc -w",
    "test": "vitest run",
    "update:latest": "pnpm update --latest"
  }
}