{
  "name": "nestjs-busboy",
  "version": "1.0.1",
  "description": "A File Upload package for NestJS supporting both Fastify and Express adapters",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "fastify",
    "express",
    "nestjs",
    "file upload",
    "busboy",
    "multipart"
  ],
  "license": "MIT",
  "author": "DrRaider",
  "contributors": [
    {
      "name": "Nicolas SAILLY"
    }
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/DrRaider/nestjs-busboy.git"
  },
  "bugs": {
    "url": "https://github.com/DrRaider/nestjs-busboy/issues"
  },
  "type": "commonjs",
  "dependencies": {
    "@fastify/busboy": "^3.0.0"
  },
  "peerDependencies": {
    "@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
    "@nestjs/platform-express": "^9.0.0 || ^10.0.0 || ^11.0.0",
    "@nestjs/platform-fastify": "^9.0.0 || ^10.0.0 || ^11.0.0",
    "rxjs": "^7.0.0"
  },
  "peerDependenciesMeta": {
    "@nestjs/common": {
      "optional": false
    },
    "@nestjs/platform-express": {
      "optional": true
    },
    "@nestjs/platform-fastify": {
      "optional": true
    },
    "rxjs": {
      "optional": false
    }
  },
  "devDependencies": {
    "@biomejs/biome": "^2.0.0",
    "@changesets/cli": "^2.29.0",
    "@nestjs/common": "^11.1.17",
    "@nestjs/core": "^11.1.17",
    "@nestjs/platform-express": "^11.1.17",
    "@nestjs/platform-fastify": "^11.1.17",
    "@nestjs/testing": "^11.1.17",
    "@swc/core": "^1.4.0",
    "@swc/jest": "^0.2.37",
    "@types/jest": "^29.5.0",
    "@types/node": "^25.5.0",
    "jest": "^29.7.0",
    "lefthook": "^2.1.4",
    "pactum": "^3.7.0",
    "reflect-metadata": "^0.2.0",
    "rxjs": "^7.8.1",
    "tslib": "^2.6.0",
    "typescript": "^5.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "check:fix": "biome check --write .",
    "check": "biome check .",
    "preinstall": "npx only-allow pnpm",
    "test": "jest --runInBand",
    "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.build.json"
  }
}