UNPKG

mixpart

Version:

High-performance streaming multipart/mixed parser for Node.js

55 lines 1.17 kB
{ "name": "mixpart", "version": "0.0.4", "description": "High-performance streaming multipart/mixed parser for Node.js", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "files": [ "dist" ], "engines": { "node": ">=22.0.0" }, "keywords": [ "multipart", "mixed", "parser", "streaming", "node", "typescript", "performance" ], "author": "Timer <timer@vercel.com>", "license": "MIT", "devDependencies": { "@types/node": "^22.15.24", "@vitest/coverage-v8": "3.1.4", "@vitest/ui": "^3.1.4", "tsup": "^8.5.0", "typescript": "^5.0.0", "vitest": "^3.1.4" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "clean": "rm -rf dist", "typecheck": "tsc --noEmit" } }