mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 19:02:14 +00:00
Some checks failed
CodeQL / Analyze (javascript) (push) Failing after 2m35s
Signed-off-by: Florian Bouillon <f.bouillon@aptatio.com>
38 lines
922 B
JSON
38 lines
922 B
JSON
{
|
|
"name": "@dzeio/listener",
|
|
"version": "1.1.0",
|
|
"description": "A NodeJS Listener implementation",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dzeiocom/libs.git",
|
|
"directory": "packages/listener"
|
|
},
|
|
"author": "Aviortheking",
|
|
"license": "MIT",
|
|
"main": "./dist/Listener.js",
|
|
"module": "./dist/Listener.mjs",
|
|
"types": "./dist/Listener.d.ts",
|
|
"browser": "./dist/Listener.global.js",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/Listener.d.ts",
|
|
"default": "./dist/Listener.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/Listener.d.mts",
|
|
"default": "./dist/Listener.mjs"
|
|
}
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "tsup ./Listener.ts --format cjs,esm --dts --clean && tsup ./Listener.ts --format iife --global-name Listener --minify --sourcemap"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^7.2.0",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|