{
  "name": "@wonbeanie/lightdb",
  "publishConfig": {
    "access": "public"
  },
  "version": "2.1.0",
  "description": "A serverless, real-time P2P database based on WebRTC and PeerJS",
  "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"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "tsup src/index.ts --format cjs,esm && tsc --emitDeclarationOnly --declaration --outDir dist",
    "test": "vitest",
    "test:coverage": "vitest --coverage",
    "publish": "npm run build && npm publish"
  },
  "type": "module",
  "keywords": [
    "database",
    "webrtc",
    "peerjs",
    "p2p",
    "realtime",
    "serverless",
    "localstorage",
    "json-db"
  ],
  "author": "kwangwon ko (goobb2580@gmail.com)",
  "license": "MIT",
  "packageManager": "pnpm@10.30.1",
  "devDependencies": {
    "@types/node": "^25.5.0",
    "@vitest/coverage-v8": "4.1.4",
    "jsdom": "^29.0.2",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2",
    "vitest": "^4.1.4",
    "peerjs": "^1.5.5"
  },
  "peerDependencies": {
    "peerjs": "^1.5.5"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wonbeanie/LightDB.git"
  }
}
