{
  "name": "@yandeu/events",
  "version": "0.0.7",
  "description": "⚡ Simplified and TypeScripted version of EventEmitter3@4.0.7",
  "type": "module",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "author": "Yannick Deubel (https://github.com/yandeu)",
  "license": "MIT",
  "homepage": "https://github.com/yandeu/events#readme",
  "repository": {
    "type": "git",
    "url": "git://github.com/yandeu/events.git"
  },
  "engines": {
    "node": ">=18.2"
  },
  "keywords": [
    "events",
    "typescript"
  ],
  "bugs": {
    "url": "https://github.com/yandeu/events/issues"
  },
  "scripts": {
    "prepareRelease": "npm install && npm run build",
    "start": "npm run dev",
    "dev": "npm run build && npm-run-all --parallel dev:*",
    "dev:tsc": "tsc --project tsconfig.json --watch",
    "format": "prettier --write src/**",
    "format:check": "prettier --check src/**",
    "lint": "eslint src/**",
    "lint:fix": "eslint --fix src/**",
    "build": "npm run prune && npm-run-all build:*",
    "build:version": "npm run version",
    "build:ts": "tsc --project tsconfig.json",
    "build:bundle": "npx esbuild --bundle src/index.ts --minify --outfile=bundle/events.min.js --format=esm",
    "version": "extract version /src/version.ts",
    "prune": "rimraf lib cjs esm umd dist bundle",
    "prepublishOnly": "npm run build && npm test",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
  },
  "devDependencies": {
    "@tsconfig/node18": "^18.2.4",
    "@types/node": "^22.10.2",
    "@yandeu/eslint-config": "^0.0.4",
    "@yandeu/extract": "^0.0.3",
    "@yandeu/prettier-config": "^0.0.4",
    "esbuild": "^0.24.1",
    "eslint": "^8.26.0",
    "jest": "^29.7.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.2",
    "ts-loader": "^8.0.17",
    "typescript": "^5.7.2",
    "webpack": "^5.24.2",
    "webpack-cli": "^4.5.0"
  },
  "funding": {
    "url": "https://github.com/sponsors/yandeu"
  }
}
