{
  "name": "certus-adivalt",
  "version": "1.0.3",
  "description": "Certain Adi Vault - The most reliable error handling, response management, and logging system",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "module": "dist/esm/index.js",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc",
    "build:esm": "tsc --module es2020 --outDir dist/esm",
    "dev": "tsc --watch",
    "test": "vitest",
    "test:certus": "vitest tests/certus",
    "test:adi": "vitest tests/adi",
    "test:responses": "vitest tests/responses",
    "test:valt": "vitest tests/valt",
    "test:coverage": "vitest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build && npm test",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major",
    "release:patch": "npm run version:patch && npm run publish:build",
    "release:minor": "npm run version:minor && npm run publish:build",
    "release:major": "npm run version:major && npm run publish:build",
    "publish:build": "npm run clean && npm run build && npm test && npm publish",
    "preversion": "npm test",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "error-handling",
    "errors",
    "response",
    "logger",
    "middleware",
    "certus",
    "adi",
    "valt",
    "typescript"
  ],
  "author": "Raushan Kumar",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/raushan-kumar7/certus-adivalt.git"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "devDependencies": {
    "@types/express": "^5.0.5",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.10.1",
    "@typescript-eslint/eslint-plugin": "^8.46.4",
    "@typescript-eslint/parser": "^8.46.4",
    "@vitest/coverage-v8": "^4.0.10",
    "eslint": "^9.39.1",
    "express": "^5.1.0",
    "jest": "^30.2.0",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "vitest": "^4.0.10"
  },
  "peerDependencies": {
    "express": "^5.1.0"
  }
}
