{
  "name": "@yak-io/angular",
  "version": "0.8.0",
  "description": "Angular SDK for embedding yak chatbot",
  "type": "module",
  "license": "SEE LICENSE IN LICENSE",
  "author": "Yak <support@yak.io>",
  "repository": {
    "type": "git",
    "url": "https://github.com/388-labs/yak.git",
    "directory": "packages/angular"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "yak",
    "chatbot",
    "ai",
    "widget",
    "chat",
    "angular"
  ],
  "engines": {
    "node": ">=18"
  },
  "files": [
    "README.md",
    "dist",
    "LICENSE"
  ],
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@yak-io/javascript": "0.13.4"
  },
  "peerDependencies": {
    "@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.13.2",
    "typescript": "^5.3.0",
    "@repo/typescript-config": "0.0.0"
  },
  "homepage": "https://docs.yak.io/docs/sdks/angular",
  "scripts": {
    "build": "node ../../scripts/build-package.mjs && tsc --emitDeclarationOnly",
    "check-types": "tsc --noEmit",
    "test": "vitest run",
    "lint": "biome lint ./src --fix",
    "format": "biome format ./src --write"
  }
}