@loglayer/shared
Version:
Shared utilities and types for loglayer packages.
53 lines • 1.33 kB
JSON
{
"name": "@loglayer/shared",
"description": "Shared utilities and types for loglayer packages.",
"version": "2.4.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loglayer/loglayer.git",
"directory": "packages/core/shared"
},
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"loglayer"
],
"devDependencies": {
"@types/node": "24.3.1",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4",
"@internal/tsconfig": "2.1.0"
},
"bugs": "https://github.com/loglayer/loglayer/issues",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://loglayer.dev",
"scripts": {
"build": "tsup src/index.ts",
"clean": "rm -rf .turbo node_modules dist",
"lint": "biome check --no-errors-on-unmatched --write --unsafe src",
"lint:staged": "biome check --no-errors-on-unmatched --write --unsafe --staged src",
"verify-types": "tsc --noEmit"
}
}