package.json
{
"name": "@caff/async-busboy",
"version": "3.0.2",
"description": "Promise based multipart form parser",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/caffco/async-busboy"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"test": "vitest",
"coverage": "npm test -- --coverage",
"lint": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky install"
},
"keywords": [
"koa",
"multipart",
"form",
"file-upload"
],
"author": "Lluís Ulzurrun de Asanza i Sàez <me@llu.is>",
"contributors": [
"Emanuel Chappat <emmanuel.chappat@gmail.com>"
],
"license": "MIT",
"dependencies": {
"@types/busboy": "^1.5.4",
"busboy": "^1.6.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.0.1"
}
}