{
  "name": "wicked-bus",
  "version": "2.3.0",
  "description": "Lightweight, local-first SQLite event bus for AI agents and developer tools",
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    },
    "./cli": "./commands/cli.js"
  },
  "main": "./lib/index.cjs",
  "module": "./lib/index.js",
  "bin": {
    "wicked-bus": "./commands/cli.js",
    "wicked-bus-install": "./install.mjs"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "postinstall": "node scripts/postinstall.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  },
  "dependencies": {
    "uuid": "^14.0.0"
  },
  "peerDependencies": {
    "better-sqlite3": ">=9.0.0"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^4.1.4",
    "better-sqlite3": "^12.0.0",
    "vitest": "^4.1.4"
  },
  "files": [
    "lib/",
    "commands/",
    "scripts/",
    "skills/",
    "install.mjs"
  ],
  "keywords": [
    "event-bus",
    "sqlite",
    "local-first",
    "ai-agents",
    "developer-tools",
    "cursor-poll",
    "at-least-once"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mikeparcewski/wicked-bus.git"
  },
  "homepage": "https://github.com/mikeparcewski/wicked-bus#readme",
  "bugs": {
    "url": "https://github.com/mikeparcewski/wicked-bus/issues"
  }
}
