echo/package.json
creations a3b7064cb6
Some checks failed
Code quality checks / biome (push) Failing after 10s
1.0.7
2025-06-13 20:21:53 -04:00

59 lines
1.2 KiB
JSON

{
"name": "@atums/echo",
"version": "1.0.7",
"description": "A minimal, flexible logger",
"private": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"dev": "bun run build --watch",
"build": "rm -rf dist && tsup && rm -f dist/*.d.cts dist/**/*.d.cts",
"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.15",
"tsup": "latest"
},
"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": "latest"
}
}