package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "chokidar",
  3. "description": "Minimal and efficient cross-platform file watching library",
  4. "version": "4.0.3",
  5. "homepage": "https://github.com/paulmillr/chokidar",
  6. "author": "Paul Miller (https://paulmillr.com)",
  7. "files": [
  8. "index.js",
  9. "index.d.ts",
  10. "handler.js",
  11. "handler.d.ts",
  12. "esm"
  13. ],
  14. "main": "./index.js",
  15. "module": "./esm/index.js",
  16. "types": "./index.d.ts",
  17. "exports": {
  18. ".": {
  19. "import": "./esm/index.js",
  20. "require": "./index.js"
  21. },
  22. "./handler.js": {
  23. "import": "./esm/handler.js",
  24. "require": "./handler.js"
  25. }
  26. },
  27. "dependencies": {
  28. "readdirp": "^4.0.1"
  29. },
  30. "devDependencies": {
  31. "@paulmillr/jsbt": "0.2.1",
  32. "@types/node": "20.14.8",
  33. "chai": "4.3.4",
  34. "prettier": "3.1.1",
  35. "rimraf": "5.0.5",
  36. "sinon": "12.0.1",
  37. "sinon-chai": "3.7.0",
  38. "typescript": "5.5.2",
  39. "upath": "2.0.1"
  40. },
  41. "sideEffects": false,
  42. "engines": {
  43. "node": ">= 14.16.0"
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/paulmillr/chokidar.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/paulmillr/chokidar/issues"
  51. },
  52. "license": "MIT",
  53. "scripts": {
  54. "build": "tsc && tsc -p tsconfig.esm.json",
  55. "lint": "prettier --check src",
  56. "format": "prettier --write src",
  57. "test": "node --test"
  58. },
  59. "keywords": [
  60. "fs",
  61. "watch",
  62. "watchFile",
  63. "watcher",
  64. "watching",
  65. "file",
  66. "fsevents"
  67. ],
  68. "funding": "https://paulmillr.com/funding/"
  69. }