{
  "name": "@remix-run/form-data-parser",
  "version": "0.17.5",
  "description": "A request.formData() wrapper with streaming file upload handling",
  "author": "Michael Jackson <mjijackson@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/remix-run/remix.git",
    "directory": "packages/form-data-parser"
  },
  "homepage": "https://github.com/remix-run/remix/tree/main/packages/form-data-parser#readme",
  "license": "MIT",
  "files": [
    "LICENSE",
    "README.md",
    "dist",
    "src",
    "!src/**/*.test.ts"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@remix-run/multipart-parser": "^0.16.4"
  },
  "devDependencies": {
    "@types/node": "^24.6.0",
    "typescript": "^7.0.2",
    "@remix-run/assert": "0.3.0",
    "@remix-run/data-schema": "^0.3.0",
    "@remix-run/test": "0.6.0"
  },
  "keywords": [
    "form-data",
    "FormData",
    "multipart",
    "parser"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean": "git clean -fdX",
    "test": "remix test",
    "test:bun": "bun x --bun remix test",
    "typecheck": "tsc --noEmit"
  }
}