@palmares/events
Version:
This is the events framework for palmares, it's responsible for handling everything that is Pub/Sub like websockets, pub/sub like redis, and other types of asynchronous background tasks
50 lines • 1.64 kB
JSON
{
"name": "@palmares/events",
"version": "0.1.6",
"description": "This is the events framework for palmares, it's responsible for handling everything that is Pub/Sub like websockets, pub/sub like redis, and other types of asynchronous background tasks",
"main": "./dist/src/index.cjs",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/palmaresHQ/palmares.git"
},
"keywords": [
"palmares",
"events",
"framework"
],
"type": "module",
"author": "Nicolas Leal",
"license": "MIT",
"bugs": {
"url": "https://github.com/palmaresHQ/palmares/issues"
},
"homepage": "https://github.com/palmaresHQ/palmares#readme",
"dependencies": {
"@palmares/core": "0.2.6",
"@palmares/logging": "0.2.6"
},
"scripts": {
"clear": "rimraf ./dist",
"build:types": "tsc --project tsconfig.types.json",
"build:cjs:esm": "tsup ./src --out-dir ./dist/src --format cjs,esm --silent --no-splitting",
"build": "pnpm run clear && pnpm run build:cjs:esm && pnpm run build:types",
"build:types:watch": "tsc --project tsconfig.types.json --watch --preserveWatchOutput",
"build:cjs:esm:watch": "tsup ./src --out-dir ./dist/src --format cjs,esm --watch --silent --no-splitting",
"build:watch": "pnpm run build:cjs:esm:watch & pnpm run build:types:watch"
}
}