All checks were successful
Code quality checks / biome (push) Successful in 12s
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@atums/echo",
|
|
"version": "1.0.6",
|
|
"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"
|
|
}
|
|
}
|