{
  "name": "@pulsoid/socket",
  "version": "3.0.0",
  "description": "Zero dependency WebSocket client for Pulsoid heart rate API",
  "main": "dist/index.cjs.js",
  "module": "dist/index.es.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.js",
      "require": "./dist/index.cjs.js"
    }
  },
  "repository": "git@github.com:pulsoid-oss/pulsoid-socket.git",
  "author": "xmityaz",
  "license": "MIT",
  "scripts": {
    "build": "rm -rf ./dist && vite build && tsc --project tsconfig.build.json --declaration --emitDeclarationOnly",
    "dev": "vite --config vite.config.ts",
    "start-example": "vite example --host",
    "build:demo": "vite build --config vite.config.demo.ts",
    "test": "vitest run",
    "release": "npm run build && npm version patch && npm publish",
    "release:minor": "npm run build && npm version minor && npm publish",
    "release:major": "npm run build && npm version major && npm publish"
  },
  "devDependencies": {
    "@types/node": "^25.3.0",
    "jest-websocket-mock": "^2.5.0",
    "typescript": "^5.9.3",
    "vite": "^7.3.1",
    "vitest": "^3.0.0"
  },
  "dependencies": {}
}
