package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "readdirp",
  3. "description": "Recursive version of fs.readdir with small RAM & CPU footprint",
  4. "version": "5.1.1",
  5. "homepage": "https://github.com/paulmillr/readdirp",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/paulmillr/readdirp.git"
  9. },
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/paulmillr/readdirp/issues"
  13. },
  14. "author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
  15. "contributors": [
  16. "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
  17. "Paul Miller (https://paulmillr.com)"
  18. ],
  19. "engines": {
  20. "node": ">= 20.19.0"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts"
  25. ],
  26. "type": "module",
  27. "main": "./index.js",
  28. "module": "./index.js",
  29. "types": "./index.d.ts",
  30. "exports": {
  31. ".": "./index.js"
  32. },
  33. "sideEffects": false,
  34. "keywords": [
  35. "recursive",
  36. "fs",
  37. "stream",
  38. "streams",
  39. "readdir",
  40. "filesystem",
  41. "find",
  42. "filter"
  43. ],
  44. "scripts": {
  45. "build": "tsc",
  46. "format": "prettier --write index.ts test/index.test.js",
  47. "test": "node test/index.test.js"
  48. },
  49. "devDependencies": {
  50. "@paulmillr/jsbt": "0.6.1",
  51. "@types/node": "24.10.1",
  52. "c8": "10.1.3",
  53. "chai": "4.3.4",
  54. "chai-subset": "1.6.0",
  55. "prettier": "3.1.1",
  56. "typescript": "5.9.2"
  57. },
  58. "funding": {
  59. "type": "individual",
  60. "url": "https://paulmillr.com/funding/"
  61. }
  62. }