{
	"name": "@c15t/logger",
	"version": "2.1.0",
	"description": "Lightweight, structured logger for c15t packages with custom-handler support and type-safe levels.",
	"keywords": [
		"c15t",
		"logger",
		"logging",
		"structured-logging",
		"typescript",
		"consent",
		"privacy"
	],
	"homepage": "https://c15t.com/",
	"bugs": {
		"url": "https://github.com/c15t/c15t/issues"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/c15t/c15t.git",
		"directory": "packages/logger"
	},
	"license": "Apache-2.0",
	"sideEffects": false,
	"type": "module",
	"exports": {
		".": {
			"types": "./dist-types/index.d.ts",
			"import": "./dist/index.js",
			"require": "./dist/index.cjs"
		}
	},
	"main": "./dist/index.cjs",
	"module": "./dist/index.js",
	"types": "./dist-types/index.d.ts",
	"files": [
		"dist",
		"dist-types"
	],
	"scripts": {
		"build": "rslib build && bun ../../scripts/normalize-dist-types.mjs",
		"check-types": "tsc --noEmit",
		"dev": "sh -c 'rslib build --no-dts --no-clean && rslib build --watch --no-dts --no-clean'",
		"fmt": "bun biome format --write . && bun biome check --formatter-enabled=false --linter-enabled=false --write",
		"lint": "bun biome lint ./src",
		"test": "vitest run --passWithNoTests",
		"test:watch": "vitest"
	},
	"browserslist": [
		">0.2%",
		"not dead",
		"not op_mini all"
	],
	"dependencies": {
		"chalk": "^5.6.2",
		"neverthrow": "^8.2.0",
		"picocolors": "^1.1.1"
	},
	"devDependencies": {
		"@c15t/typescript-config": "0.0.1",
		"@c15t/vitest-config": "1.0.0"
	},
	"publishConfig": {
		"access": "public"
	}
}
