{
  "name": "fireflies-api",
  "version": "0.6.0",
  "type": "module",
  "description": "TypeScript SDK for Fireflies.ai API with Realtime WebSocket support",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./schemas": {
      "types": "./dist/schemas/index.d.ts",
      "import": "./dist/schemas/index.js",
      "require": "./dist/schemas/index.cjs"
    },
    "./express": {
      "types": "./dist/middleware/express.d.ts",
      "import": "./dist/middleware/express.js",
      "require": "./dist/middleware/express.cjs"
    },
    "./fastify": {
      "types": "./dist/middleware/fastify.d.ts",
      "import": "./dist/middleware/fastify.js",
      "require": "./dist/middleware/fastify.cjs"
    },
    "./hono": {
      "types": "./dist/middleware/hono.d.ts",
      "import": "./dist/middleware/hono.js",
      "require": "./dist/middleware/hono.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "bin": {
    "fireflies": "./dist/cli/index.js",
    "fireflies-api": "./dist/cli/index.js"
  },
  "scripts": {
    "prepare": "[ -d .git ] && ./scripts/setup-hooks.sh || true",
    "setup:hooks": "./scripts/setup-hooks.sh",
    "build": "tsup",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:live": "LIVE_TEST=1 vitest run --config vitest.live.config.ts",
    "check": "biome check .",
    "fix": "biome check --write .",
    "typecheck": "tsc --noEmit",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "changelog:preview": "conventional-changelog -p angular -r 1",
    "docs": "typedoc",
    "docs:watch": "typedoc --watch",
    "release:patch": "commit-and-tag-version --release-as patch && git push --follow-tags",
    "release:minor": "commit-and-tag-version --release-as minor && git push --follow-tags",
    "release:major": "commit-and-tag-version --release-as major && git push --follow-tags",
    "release:dry-run": "commit-and-tag-version --dry-run",
    "release:first": "commit-and-tag-version --first-release && git push --follow-tags"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "fireflies",
    "fireflies.ai",
    "transcription",
    "meeting",
    "api",
    "sdk",
    "realtime",
    "websocket",
    "webhook",
    "middleware"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/BjoernSchotte/fireflies-api"
  },
  "bugs": {
    "url": "https://github.com/BjoernSchotte/fireflies-api/issues"
  },
  "homepage": "https://github.com/BjoernSchotte/fireflies-api#readme",
  "dependencies": {
    "archiver": "^7.0.1",
    "commander": "^13.0.0",
    "ora": "^9.1.0",
    "socket.io-client": "^4.8.3"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.0.0",
    "@hono/node-server": "^1.19.9",
    "@types/archiver": "^7.0.0",
    "@types/express": "^5.0.6",
    "commit-and-tag-version": "^12.6.1",
    "conventional-changelog-cli": "^5.0.0",
    "express": "^5.2.1",
    "fastify": "^5.7.2",
    "hono": "^4.11.7",
    "msw": "^2.0.0",
    "socket.io": "^4.8.3",
    "tsup": "^8.0.0",
    "typedoc": "^0.28.16",
    "typescript": "^5.0.0",
    "vitest": "^3.0.0",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "express": "^4.0.0 || ^5.0.0",
    "fastify": "^4.0.0 || ^5.0.0",
    "hono": "^3.0.0 || ^4.0.0",
    "zod": "^3.25.0 || ^4.0.0"
  },
  "peerDependenciesMeta": {
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "hono": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  }
}
