{
  "name": "@salla.sa/embedded-sdk",
  "description": "Communication bridge SDK for embedded apps in Salla Dashboard",
  "source": "src/index.ts",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "system": "./dist/system/index.js",
  "browser": "./dist/umd/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "salla",
    "embedded",
    "sdk",
    "iframe",
    "postmessage",
    "app-bridge"
  ],
  "author": "Salla",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SallaApp/embedded-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/SallaApp/embedded-sdk/issues"
  },
  "devDependencies": {
    "@eslint/js": "9.39.2",
    "@types/node": "22.19.3",
    "@vitest/coverage-v8": "4.0.16",
    "eslint": "9.39.2",
    "eslint-config-prettier": "9.1.2",
    "globals": "16.5.0",
    "jsdom": "27.3.0",
    "prettier": "3.7.4",
    "typescript": "5.9.3",
    "typescript-eslint": "8.50.0",
    "vite": "7.3.2",
    "vite-plugin-dts": "4.5.4",
    "vitest": "4.0.16"
  },
  "engines": {
    "node": ">=18"
  },
  "version": "0.2.6",
  "scripts": {
    "dev": "vite build --mode=development --watch",
    "prebuild": "rm -rf dist",
    "build": "vite build --mode=production",
    "production": "npm run build",
    "build:types": "tsc --emitDeclarationOnly",
    "test": "vitest --config vitest.config.mjs --coverage --run",
    "test:watch": "vitest --watch",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "lint:strict": "eslint src --fix --max-warnings 0",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "typecheck": "tsc --noEmit"
  }
}