{
  "name": "notebooklm",
  "version": "0.1.1",
  "description": "Unofficial TypeScript/JavaScript client for Google NotebookLM API",
  "author": "kaelen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kaelen/notebooklm.git"
  },
  "homepage": "https://github.com/kaelen/notebooklm#readme",
  "bugs": {
    "url": "https://github.com/kaelen/notebooklm/issues"
  },
  "keywords": [
    "notebooklm",
    "google",
    "ai",
    "notebook",
    "podcast",
    "audio",
    "video",
    "api",
    "client",
    "typescript"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli/index.js",
      "types": "./dist/cli/index.d.ts"
    }
  },
  "bin": {
    "notebooklm": "./dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "bun run build:clean && bun run build:js && bun run build:types",
    "build:clean": "rm -rf dist",
    "build:js": "bun build src/index.ts --outdir dist --target node --format esm --external playwright && bun build src/cli/index.ts --outdir dist/cli --target node --format esm --external playwright",
    "build:types": "tsc -p tsconfig.build.json",
    "cli": "bun run src/cli/index.ts",
    "dev": "bun run src/cli/index.ts",
    "type-check": "tsc --noEmit",
    "test": "bun test",
    "lint": "bunx @biomejs/biome check src",
    "prepublishOnly": "bun run build"
  },
  "dependencies": {
    "chalk": "^5.4.1",
    "commander": "^13.0.0",
    "zod": "^4.3.5"
  },
  "optionalDependencies": {
    "playwright": "^1.52.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/node": "^22.0.0",
    "typescript": "^5.7.0"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
