@tioniq/eventiq
Version:
A library providing utilities for implementing the Event pattern, facilitating event handling in JavaScript and TypeScript applications. This library is a collection of common utilities for managing events and event handlers using the Event pattern. The i
90 lines (89 loc) • 2.52 kB
JSON
{
"name": "@tioniq/eventiq",
"version": "1.3.1",
"description": "A library providing utilities for implementing the Event pattern, facilitating event handling in JavaScript and TypeScript applications. This library is a collection of common utilities for managing events and event handlers using the Event pattern. The implementation uses the Dispose pattern",
"author": {
"email": "timoniann@gmail.com",
"name": "Tim"
},
"homepage": "https://github.com/tioniq/eventiq/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/tioniq/eventiq.git"
},
"bugs": {
"url": "https://github.com/tioniq/eventiq/issues"
},
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "jest",
"test:coverage": "jest --coverage --collect-coverage",
"test:badges": "coverage-badges",
"prepublishOnly": "npm run build && npm run test:coverage && npm run test:badges",
"run:publish:npm": "npm publish --access public",
"run:publish:jsr": "npx jsr publish --allow-dirty",
"run:publish": "npm run run:publish:npm && npm run run:publish:jsr"
},
"dependencies": {
"@tioniq/disposiq": "^1.3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"coverage-badges-cli": "^2.1.0",
"jest": "^29.7.0",
"jsr": "^0.13.4",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"keywords": [
"event",
"event-pattern",
"observable",
"observables",
"observer",
"observable-pattern",
"observer-pattern",
"event-handling",
"event-emitter",
"event-listener",
"event-dispatcher",
"typescript",
"javascript",
"event-management",
"event-utilities",
"eventiq",
"disposiq",
"variable-operations",
"event-subscription",
"event-driven",
"variable",
"variables",
"observable-variable",
"observable-variables",
"variable-management",
"reactive",
"reactive-variables",
"reactive-variable",
"rx",
"covariant",
"dispose",
"disposable"
],
"private": false,
"contributors": [
"Tim (https://github.com/Timoniann)"
]
}