mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 19:02:14 +00:00
43 lines
1021 B
JSON
43 lines
1021 B
JSON
{
|
|
"name": "@dzeio/logger",
|
|
"version": "3.2.1",
|
|
"description": "My Personnal Logger",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dzeiocom/libs.git",
|
|
"directory": "packages/Logger"
|
|
},
|
|
"author": "Aviortheking",
|
|
"license": "MIT",
|
|
"main": "./dist/Logger.js",
|
|
"module": "./dist/Logger.mjs",
|
|
"types": "./dist/Logger.d.ts",
|
|
"browser": "./dist/Logger.global.js",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/Logger.d.ts",
|
|
"default": "./dist/Logger.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/Logger.d.mts",
|
|
"default": "./dist/Logger.mjs"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"colorette": "^2.0.20"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.5.0",
|
|
"@typescript-eslint/parser": "^4.5.0",
|
|
"eslint": "^7.4.0",
|
|
"tsup": "^7.1.0"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "tsup ./src/Logger.ts --format cjs,esm --dts --clean && tsup ./src/Logger.ts --format iife --global-name Logger --sourcemap",
|
|
"test": "ts-node test"
|
|
}
|
|
}
|