{
  "name": "event-target-bus",
  "version": "1.0.0",
  "description": "",
  "repository": {
    "type": "git",
    "url": "https://github.com/SukkaW/event-target-bus.git"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "EventTarget",
    "event-target",
    "event-emitter"
  ],
  "author": "SukkaW <https://skk.moe>",
  "license": "MIT",
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@swc-node/register": "^1.11.1",
    "@swc/core": "^1.15.17",
    "@types/mocha": "^10.0.10",
    "@types/sinon": "^21.0.0",
    "bumpp": "^10.4.1",
    "bunchee": "^6.9.4",
    "earl": "^2.0.0",
    "eslint": "^10.0.2",
    "eslint-config-sukka": "^8.7.0",
    "eslint-formatter-sukka": "^8.7.0",
    "mocha": "^11.7.5",
    "nyc": "^18.0.0",
    "sinon": "^21.0.1",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "lint": "eslint --format=sukka .",
    "build": "bunchee --minify --no-sourcemap",
    "test": "SWC_NODE_IGNORE_DYNAMIC=1 SWC_NODE_INLINE_SOURCE_MAP=1 nyc mocha --require @swc-node/register test/**/*.test.ts",
    "prerelease": "pnpm run lint && pnpm run test && pnpm run build",
    "release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
  }
}