package.json 701 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "tinypool",
  3. "version": "0.3.1",
  4. "description": "A minimal and tiny Node.js Worker Thread Pool implementation, a fork of piscina, but with fewer features",
  5. "type": "module",
  6. "main": "./dist/esm/index.js",
  7. "module": "./dist/esm/index.js",
  8. "types": "./dist/index.d.ts",
  9. "files": [
  10. "dist/**"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/aslemammad/tinypool.git"
  15. },
  16. "keywords": [
  17. "fast",
  18. "worker threads",
  19. "thread pool"
  20. ],
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/aslemammad/tinypool/issues"
  24. },
  25. "homepage": "https://github.com/aslemammad/tinypool#readme",
  26. "engines": {
  27. "node": ">=14.0.0"
  28. }
  29. }