{
  "name": "pub-sub-es",
  "version": "3.0.0",
  "description": "A simple pub-sub service",
  "author": "Fritz Lekschas",
  "type": "module",
  "keywords": [
    "pub-sub",
    "es6",
    "es2015",
    "publish",
    "subscribe"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": "./dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "start": "vite",
    "build": "tsc --build && vite build",
    "prepublishOnly": "npm run fix",
    "prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
    "pretest": "npm run fix",
    "test": "vitest run --environment=happy-dom",
    "coverage": "vitest run --coverage --environment=happy-dom",
    "fix": "biome check --apply ."
  },
  "devDependencies": {
    "@biomejs/biome": "1.7.3",
    "@vitest/coverage-v8": "^1.6.0",
    "happy-dom": "^14.11.0",
    "typescript": "^5.4.5",
    "vite": "^5.2.12",
    "vite-plugin-html": "^3.2.2",
    "vitest": "^1.6.0"
  },
  "homepage": "https://github.com/flekschas/pub-sub",
  "repository": {
    "type": "git",
    "url": "git://github.com/flekschas/pub-sub.git"
  },
  "bugs": {
    "url": "https://github.com/flekschas/pub-sub/issues"
  }
}
