UNPKG

disk-fastq

Version:

fastq wrapper persisted queue on disk to save some memory

47 lines 1.03 kB
{ "name": "disk-fastq", "version": "0.1.9", "description": "fastq wrapper persisted queue on disk to save some memory", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "repository": { "type": "git", "url": "git+https://github.com/fengkx/disk-queue.git" }, "keywords": [ "queue", "disk", "fastq", "promise" ], "author": "fengkx", "license": "MIT", "bugs": { "url": "https://github.com/fengkx/disk-queue/issues" }, "homepage": "https://github.com/fengkx/disk-queue#readme", "dependencies": { "disk-queue": "0.1.3" }, "devDependencies": { "fastq": "^1.13.0" }, "peerDependencies": { "fastq": "^1.13.0" }, "scripts": { "dev": "pnpm run build -- --watch", "build": "tsup src/index.ts --target es2020 --format cjs,esm --dts --splitting", "clean": "rimraf dist" } }