{
  "name": "@expressots/shared",
  "version": "4.3.0",
  "description": "Shared library for ExpressoTS modules 🐎",
  "author": "Richard Zampieri <richard.zampieri@expresso-ts.com>",
  "main": "./lib/cjs/index.js",
  "types": "./lib/cjs/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./lib/esm/types/index.d.ts",
        "default": "./lib/esm/index.mjs"
      },
      "require": {
        "types": "./lib/cjs/types/index.d.ts",
        "default": "./lib/cjs/index.js"
      }
    }
  },
  "files": [
    "README.md",
    "LICENSE.md",
    "lib/**/*"
  ],
  "license": "MIT",
  "homepage": "https://expresso-ts.com",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/expressots"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/expressots/expressots.git",
    "directory": "packages/shared"
  },
  "bugs": {
    "url": "https://github.com/expressots/expressots/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "keywords": [
    "expressots",
    "nodejs",
    "typescript",
    "clean-architecture",
    "typescript-framework",
    "framework",
    "server-side",
    "backend",
    "library"
  ],
  "overrides": {
    "js-yaml": "4.3.2"
  },
  "devDependencies": {
    "@commitlint/cli": "19.6.0",
    "@commitlint/config-conventional": "19.6.0",
    "@types/express": "^5.0.0",
    "@types/jest": "29.5.13",
    "@types/node": "20.19.43",
    "@typescript-eslint/eslint-plugin": "8.25.0",
    "@typescript-eslint/parser": "8.25.0",
    "eslint": "8.57.0",
    "eslint-config-prettier": "10.0.2",
    "husky": "9.1.7",
    "jest": "29.7.0",
    "lint-staged": "^15.2.10",
    "prettier": "3.9.6",
    "reflect-metadata": "0.2.2",
    "ts-jest": "29.4.12",
    "ts-node": "10.9.2",
    "typescript": "5.5.3"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "eslint --cache --cache-location node_modules/.cache/eslint/ --fix",
      "prettier --write --cache"
    ]
  },
  "scripts": {
    "clean": "node scripts/rm.js lib",
    "copy": "node scripts/copy.js package.json README.md CHANGELOG.md lib",
    "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run copy",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "node scripts/build-esm.js",
    "release:prepare": "node scripts/release/prepare-publish.mjs",
    "release:restore": "node scripts/release/restore-package-json.mjs",
    "release:publish": "npm run build && npm run release:prepare && npm publish --tag next --access public && npm run release:restore",
    "prepublish": "npm run build && npm pack",
    "test": "jest",
    "test:watch": "jest --watch",
    "coverage": "jest --coverage",
    "format": "prettier --write \"src/**/*.ts\" --cache",
    "lint": "eslint \"src/**/*.ts\" --cache --cache-location node_modules/.cache/eslint/",
    "lint:fix": "eslint \"src/**/*.ts\" --fix --cache --cache-location node_modules/.cache/eslint/"
  }
}