logger/package.json
2025-04-22 20:07:23 -04:00

40 lines
829 B
JSON

{
"name": "@creations.works/logger",
"version": "1.0.3",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix"
},
"private": false,
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "^1.9.4"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://git.creations.works/creations/logger.git"
},
"bugs": {
"url": "https://git.creations.works/creations/logger/issues"
},
"homepage": "https://git.creations.works/creations/logger#readme"
}