{
    "name": "@catsums/signal-event-bus",
    "version": "1.0.2",
    "description": "A package for adding signal events to your front end code, which can be used in your components or vanilla JS code as a signal handler.",
    "types": "./lib/index.d.ts",
    "main": "./lib/umd/index.js",
    "module": "./lib/index.js",
    "exports": {
        ".": {
            "require": "./lib/cjs/index.js",
            "import": "./lib/esm/index.js"
        }
    },
    "scripts": {
        "bundle": "ts-node build.ts",
        "build": "npm run bundle",
        "update": "ts-node update.ts",
        "npm-publish": "npm publish --access public"
    },
    "keywords": [],
    "author": "catsums",
    "license": "ISC",
    "devDependencies": {
        "@types/react": "^18",
        "esbuild": "^0.19.5",
        "esbuild-plugin-umd-wrapper": "^2.0.0",
        "esmify": "^2.1.1",
        "npm-dts": "^1.3.12",
        "ts-node": "^10.9.1",
        "typedoc-plugin-markdown": "^4.0.3",
        "typescript": "^5"
    },
    "dependencies": {
        "react": "^18"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/catsums/SignalEventBus.git"
    },
    "bugs": {
        "url": "https://github.com/catsums/SignalEventBus/issues"
    },
    "homepage": "https://github.com/catsums/SignalEventBus#readme"
}