@hazae41/plume
Version:
Typed async events with sequenced and parallel dispatching
63 lines (62 loc) • 1.53 kB
JSON
{
"type": "module",
"name": "@hazae41/plume",
"version": "3.0.7",
"description": "Typed async events with sequenced and parallel dispatching",
"homepage": "https://github.com/hazae41/plume",
"repository": "github:hazae41/plume",
"author": "hazae41",
"license": "MIT",
"main": "./dist/cjs/src/index.cjs",
"module": "./dist/esm/src/index.mjs",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"./dist/esm",
"./dist/cjs",
"./dist/types"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "node ./dist/test/index.test.mjs",
"prepare": "npm run build"
},
"dependencies": {
"@hazae41/box": "^3.0.1",
"@hazae41/future": "^2.0.1",
"@hazae41/option": "^1.1.4",
"@hazae41/signals": "^1.1.0"
},
"devDependencies": {
"@hazae41/phobos": "^1.0.10",
"@hazae41/rimraf": "^1.0.1",
"@hazae41/symbol-dispose-polyfill": "^1.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.15.21",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-node-externals": "^8.0.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/src/index.mjs",
"require": "./dist/cjs/src/index.cjs"
}
},
"keywords": [
"events",
"async",
"asynchronous",
"parallel",
"sequenced",
"dispatching",
"dom",
"typescript",
"esmodules",
"tested",
"unit-tested"
]
}