package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "chokidar",
  3. "description": "Minimal and efficient cross-platform file watching library",
  4. "version": "5.0.0",
  5. "type": "module",
  6. "homepage": "https://github.com/paulmillr/chokidar",
  7. "author": "Paul Miller (https://paulmillr.com)",
  8. "files": [
  9. "index.js",
  10. "index.d.ts",
  11. "handler.js",
  12. "handler.d.ts"
  13. ],
  14. "main": "./index.js",
  15. "exports": {
  16. ".": {
  17. "default": "./index.js"
  18. },
  19. "./handler.js": {
  20. "default": "./handler.js"
  21. }
  22. },
  23. "dependencies": {
  24. "readdirp": "^5.0.0"
  25. },
  26. "devDependencies": {
  27. "@paulmillr/jsbt": "0.4.5",
  28. "@types/node": "24.10.1",
  29. "prettier": "3.5.2",
  30. "tinyspy": "3.0.2",
  31. "typescript": "5.9.2",
  32. "upath": "2.0.1"
  33. },
  34. "sideEffects": false,
  35. "engines": {
  36. "node": ">= 20.19.0"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "git+https://github.com/paulmillr/chokidar.git"
  41. },
  42. "bugs": {
  43. "url": "https://github.com/paulmillr/chokidar/issues"
  44. },
  45. "license": "MIT",
  46. "scripts": {
  47. "build": "tsc",
  48. "lint": "prettier --check src",
  49. "format": "prettier --write src",
  50. "test": "node index.test.js",
  51. "test:bun1": "bun index.test.js"
  52. },
  53. "keywords": [
  54. "fs",
  55. "watch",
  56. "watchFile",
  57. "watcher",
  58. "watching",
  59. "file",
  60. "fsevents"
  61. ],
  62. "funding": "https://paulmillr.com/funding/"
  63. }