UNPKG

blob-dl

Version:

A simple library to download a Blob from the browser as a file.

67 lines (66 loc) 1.4 kB
{ "name": "blob-dl", "version": "0.0.1", "description": "A simple library to download a Blob from the browser as a file.", "license": "MIT", "author": { "name": "Edoardo Scibona", "url": "https://github.com/velut" }, "repository": { "type": "git", "url": "https://github.com/velut/blob-dl.git" }, "bugs": { "url": "https://github.com/velut/blob-dl/issues" }, "keywords": [ "download", "blob", "save", "file", "browser", "typescript", "javascript", "html", "dom", "web", "esm" ], "sideEffects": false, "type": "module", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "files": [ "dist" ], "engines": { "node": ">=20" }, "scripts": { "check": "tsc --noEmit", "build": "tsc --noEmit && tsup", "attw": "attw --pack . --ignore-rules cjs-resolves-to-esm", "test": "vitest", "test:ci": "vitest run --coverage --bail 1", "lint": "prettier --check .", "format": "prettier --write .", "pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw", "release": "np --no-cleanup" }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "@vitest/coverage-v8": "^3.0.6", "np": "^10.2.0", "prettier": "^3.5.1", "tsup": "^8.3.6", "typescript": "^5.7.3", "vitest": "^3.0.6" } }