first commit

This commit is contained in:
creations 2025-04-22 20:01:08 -04:00
commit 5260f4ff70
Signed by: creations
GPG key ID: 8F553AA4320FC711
7 changed files with 487 additions and 0 deletions

30
package.json Normal file
View file

@ -0,0 +1,30 @@
{
"name": "@creations.works/logger",
"version": "1.0.1",
"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"]
}