echo/package.json
creations e8d4d55aa8
Some checks failed
Code quality checks / biome (push) Failing after 10s
1.0.5
2025-06-11 10:31:59 -04:00

72 lines
1.5 KiB
JSON

{
"name": "@atums/echo",
"version": "1.0.5",
"description": "A minimal, flexible logger",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"lib/char": [
"./dist/lib/char.d.ts"
],
"lib/config": [
"./dist/lib/config.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./lib/char": {
"import": "./dist/lib/char.js",
"require": "./dist/lib/char.js"
},
"./lib/config": {
"import": "./dist/lib/config.js",
"require": "./dist/lib/config.js"
}
},
"scripts": {
"dev": "bun run build --watch",
"build": "rm -rf dist && tsup src/index.ts --dts --out-dir dist --format esm,cjs",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lock"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.13",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://git.creations.works/atums/echo"
},
"keywords": [
"logger",
"logging",
"typescript",
"nodejs",
"structured"
],
"author": "creations.works",
"homepage": "https://git.creations.works/atums/echo",
"bugs": {
"url": "https://git.creations.works/atums/echo/issues"
},
"dependencies": {
"date-fns-tz": "^3.2.0"
}
}