{
  "name": "api-core-backend",
  "version": "1.1.0",
  "description": "Simple REST API response, pagination, filtering, search, HTTP status, and Express middleware helpers for Node.js and TypeScript backends.",
  "author": "Choch Kimhour",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chochkimhour/api-core-backend.git"
  },
  "homepage": "https://www.npmjs.com/package/api-core-backend",
  "bugs": {
    "url": "https://github.com/chochkimhour/api-core-backend/issues"
  },
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./swagger": {
      "types": "./dist/swagger/index.d.ts",
      "import": "./dist/swagger/index.js",
      "require": "./dist/swagger/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/swagger/index.ts --format esm,cjs --dts --clean --sourcemap",
    "test": "vitest run",
    "lint": "tsc --noEmit",
    "format": "prettier --write .",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build"
  },
  "keywords": [
    "api-core-backend",
    "backend",
    "backend-utils",
    "backend-utilities",
    "api",
    "api-utils",
    "api-response",
    "api-response-helper",
    "rest",
    "rest-api",
    "rest-api-response",
    "typescript",
    "typescript-utils",
    "javascript",
    "nodejs",
    "node",
    "node-api",
    "express",
    "expressjs",
    "middleware",
    "async-handler",
    "pagination",
    "paginate",
    "filter",
    "filtering",
    "sort",
    "sorting",
    "search",
    "response",
    "responses",
    "http-status",
    "status-code",
    "errors",
    "error-handling",
    "validation",
    "serverless",
    "nestjs",
    "fastify",
    "koa",
    "hono"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {},
  "peerDependencies": {
    "swagger-jsdoc": "^6.2.8",
    "swagger-ui-express": "^5.0.1"
  },
  "peerDependenciesMeta": {
    "swagger-jsdoc": {
      "optional": true
    },
    "swagger-ui-express": {
      "optional": true
    }
  },
  "devDependencies": {
    "prettier": "^3.5.3",
    "rimraf": "^6.0.1",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3",
    "vitest": "^3.1.1"
  },
  "engines": {
    "node": ">=18"
  }
}
