{
  "name": "@yak-io/javascript",
  "version": "0.13.4",
  "description": "Core JavaScript 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/javascript"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "yak",
    "chatbot",
    "ai",
    "widget",
    "chat",
    "embed"
  ],
  "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"
    },
    "./server": {
      "types": "./dist/index.server.d.ts",
      "import": "./dist/index.server.js",
      "require": "./dist/index.server.cjs",
      "default": "./dist/index.server.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      ".": [
        "./dist/index.d.ts"
      ],
      "server": [
        "./dist/index.server.d.ts"
      ]
    }
  },
  "devDependencies": {
    "@types/node": "^24.13.2",
    "jsdom": "^28.1.0",
    "typescript": "^5.3.0",
    "vitest": "^4.1.9",
    "@repo/typescript-config": "0.0.0"
  },
  "homepage": "https://docs.yak.io/docs/sdks/javascript",
  "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"
  }
}