{
    "name": "@theorchard/ows-logger",
    "version": "2.3.0",
    "description": "Logging library for all JS and TS projects in Orchard",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "author": "The Orchard",
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "engines": {
        "node": ">=20"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist & rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "test:unit": "jest",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "pino": "^8.17.2"
    },
    "files": [
        "dist"
    ],
    "devDependencies": {
        "@types/express": "^5.0.3",
        "@types/supertest": "^2.0.16",
        "express": "^5.1.0",
        "supertest": "^6.3.3"
    }
}
