@glandjs/emitter
Version:
A fast, zero‑dependency event emitter for building scalable, event‑driven applications.
56 lines (55 loc) • 1.26 kB
JSON
{
"name": "@glandjs/emitter",
"version": "1.1.4",
"description": "A fast, zero‑dependency event emitter for building scalable, event‑driven applications.",
"homepage": "https://github.com/glandjs/emitter#readme",
"author": "Mahdi <bitsgenix@gmail.com>",
"license": "MIT",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/glandjs/emitter.git"
},
"files": [
"dist/"
],
"bugs": {
"url": "https://github.com/glandjs/emitter/issues"
},
"sideEffects": false,
"engines": {
"bun": ">=1.0.0",
"typescript": ">=5"
},
"scripts": {
"build": "tsc",
"release": "npm publish",
"release:test": "npm pack",
"test": "bun test ./tests/*",
"test:integration": "bun test ./tests/emitter.integration.ts",
"bench": "bun bench/benchmark.ts"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"glandjs",
"event",
"event-emitter",
"eds",
"typescript",
"bun"
],
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.5.4"
}
}