{ "name": "multitars", "version": "0.2.4", "description": "Multipart and Tar utilities for the Web Streams API", "author": "Phil Pluckthun ", "source": "./src/index.ts", "main": "./dist/multitars", "module": "./dist/multitars.mjs", "types": "./dist/multitars.d.ts", "files": [ "LICENSE.md", "README.md", "CHANGELOG.md", "dist/" ], "exports": { ".": { "types": "./dist/multitars.d.ts", "import": "./dist/multitars.mjs", "require": "./dist/multitars.js", "source": "./src/index.ts" }, "./package.json": "./package.json" }, "prettier": { "singleQuote": true, "arrowParens": "avoid", "trailingComma": "es5" }, "lint-staged": { "*.{js,ts,json,md}": "prettier --write" }, "keywords": [], "license": "MIT", "repository": "https://github.com/kitten/multitars", "bugs": { "url": "https://github.com/kitten/multitars/issues" }, "devDependencies": { "@babel/plugin-transform-typescript": "^7.28.5", "@changesets/cli": "^2.29.7", "@changesets/get-github-info": "^0.6.0", "@fastify/busboy": "^3.2.0", "@remix-run/tar-parser": "^0.7.0", "@rollup/plugin-babel": "^6.1.0", "@rollup/plugin-commonjs": "^29.0.0", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^0.4.4", "@types/tar-stream": "^3.1.4", "dotenv": "^17.2.3", "lint-staged": "^16.2.6", "modern-tar": "^0.7.2", "npm-run-all": "^4.1.5", "prettier": "^3.6.2", "rimraf": "^6.1.0", "rollup": "^4.53.3", "rollup-plugin-cjs-check": "^1.0.3", "rollup-plugin-dts": "^6.2.3", "tar": "^7.5.2", "tar-stream": "^3.1.7", "typescript": "^5.9.3", "vitest": "^4.0.10" }, "publishConfig": { "access": "public", "provenance": true }, "scripts": { "test": "vitest test", "test:run": "vitest test --run", "prebench": "pnpm run build", "bench": "vitest bench", "build": "rollup -c ./scripts/rollup.config.mjs", "postbuild": "tsc --lib esnext,dom,dom.iterable --target esnext --module nodenext --moduleResolution nodenext --noEmit ./dist/multitars.d.ts", "check": "tsc --noEmit", "clean": "rimraf dist node_modules/.cache", "changeset:version": "changeset version && pnpm install --lockfile-only", "changeset:publish": "changeset publish" } }