wip:milestone 0 fixes
Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped

This commit is contained in:
2026-03-15 12:35:42 +02:00
parent 6708cf28a7
commit cffdf8af86
61266 changed files with 4511646 additions and 1938 deletions

View File

@@ -0,0 +1,41 @@
{
"name": "strict-event-emitter",
"version": "0.5.1",
"description": "Type-safe implementation of EventEmitter for browser and Node.js",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.mjs"
}
},
"repository": "git@github.com:open-draft/strict-event-emitter.git",
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"@ossjs/release": "^0.8.0",
"@types/events": "^3.0.0",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^9.1.1",
"tsup": "^6.2.3",
"typescript": "4.8"
},
"scripts": {
"dev": "tsc -w",
"test": "jest",
"test:ts": "tsc -p test/typings.tsconfig.json",
"clean": "rimraf ./lib",
"build": "pnpm clean && tsup",
"release": "release publish"
}
}