@cch137/emitter
Version:
`@cch137/emitter` is a versatile event emitter package designed to work seamlessly in both browser and Node.js environments. It provides a simple yet powerful interface for managing event-driven architecture in your applications.
35 lines (34 loc) • 750 B
JSON
{
"name": "@cch137/emitter",
"version": "0.1.7",
"description": "",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"devbuild": "tsc -w",
"devstart": "nodemon ./dist/index.test.js",
"test": "npm-run-all --parallel devbuild devstart",
"build": "npm i && tsc",
"start": "node ./dist/index.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cch137/ts-emitter"
},
"keywords": [
"cch137",
"emitter"
],
"author": "cch137",
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
},
"dependencies": {}
}