UNPKG

@altano/tiny-async-pool

Version:

Run multiple promise-returning & async functions with limited concurrency using native ES9

73 lines 2.1 kB
{ "name": "@altano/tiny-async-pool", "version": "4.0.1", "description": "Run multiple promise-returning & async functions with limited concurrency using native ES9", "keywords": [ "race", "concurrency", "promise", "async", "async iterator", "async iteration", "async generator", "es9" ], "homepage": "https://github.com/altano/npm-packages/tree/main/packages/tiny-async-pool", "repository": { "type": "git", "url": "https://github.com/altano/npm-packages", "directory": "packages/tiny-async-pool" }, "license": "MIT", "author": { "name": "Alan Norbauer", "email": "altano@gmail.com", "url": "https://alan.norbauer.com" }, "contributors": [ "Rafael Xavier de Souza" ], "sideEffects": false, "type": "module", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts" ], "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "@types/node": "^22.13.10", "@vitest/coverage-v8": "^3.1.4", "depcheck": "^1.4.7", "eslint": "^9.23.0", "prettier": "^3.5.3", "tsdown": "^0.12.9", "typescript": "^5.8.2", "vite": "^6.2.6", "vitest": "^3.1.4", "@altano/build-config": "0.0.1", "@altano/testing": "0.0.1", "@altano/tsconfig": "0.0.1" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsdown --config ../build-config/tsdown.config.node.ts", "check:exports": "attw --pack . --profile esm-only --quiet", "check:types:src": "tsc --noEmit", "check:types:test": "tsc --noEmit --project ./tests/tsconfig.json", "check:unused-dependencies": "depcheck", "clean": "rm -rf .turbo && rm -rf .tsbuildinfo && rm -rf node_modules && rm -rf dist", "dev": "pnpm run build --watch", "format": "prettier --check src", "format:fix": "prettier --write src", "lint": "eslint", "lint:fix": "TIMING=1 pnpm lint --fix", "lint:timing": "TIMING=1 pnpm lint", "test:unit": "vitest --run", "test:unit:watch": "vitest" } }