{
  "name": "@vibeping/sdk",
  "version": "0.2.0",
  "type": "module",
  "description": "Lightweight analytics, error tracking, and web vitals SDK for VibePing",
  "author": "VibePing <hello@vibeping.dev>",
  "license": "MIT",
  "homepage": "https://vibeping.dev",
  "bugs": {
    "url": "https://github.com/Vibeping/vibeping/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Vibeping/vibeping.git",
    "directory": "packages/sdk"
  },
  "keywords": [
    "analytics",
    "tracking",
    "web-vitals",
    "error-tracking",
    "pageview",
    "typescript",
    "privacy",
    "open-source",
    "vibe-coding"
  ],
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/vibeping.cjs",
  "module": "dist/vibeping.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/vibeping.esm.js",
      "require": "./dist/vibeping.cjs",
      "default": "./dist/vibeping.esm.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@rollup/plugin-replace": "^6.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "jsdom": "^29.0.1",
    "rollup": "^4.14.0",
    "@rollup/plugin-terser": "^0.4.4",
    "tslib": "^2.6.0",
    "typescript": "^5.4.0",
    "vitest": "^4.1.4"
  },
  "peerDependencies": {
    "web-vitals": "^3.0.0 || ^4.0.0"
  },
  "peerDependenciesMeta": {
    "web-vitals": {
      "optional": true
    }
  },
  "sideEffects": true,
  "scripts": {
    "build": "rollup -c && tsc --emitDeclarationOnly --declaration --outDir dist",
    "dev": "rollup -c --watch",
    "lint": "tsc --noEmit",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "clean": "rm -rf dist"
  }
}