{
  "name": "@bscotch/debounce-watch",
  "version": "1.1.0",
  "description": "Monitor files for changes, debounce events, and finally trigger consequences.",
  "keywords": [
    "autoload",
    "debounce",
    "development",
    "file",
    "fs",
    "fsevents",
    "monitor",
    "reload",
    "restart",
    "terminal",
    "watch",
    "watcher",
    "watchFile",
    "watching"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bscotch/jslib.git",
    "directory": "packages/debounce-watch"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "chokidar": "^3.5.3",
    "tslib": "^2.6.2",
    "@bscotch/utility": "7.2.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.6",
    "@types/fs-extra": "^11.0.2",
    "@types/mocha": "^10.0.1",
    "chai": "^4.3.8",
    "fs-extra": "11.1.1",
    "mocha": "^10.2.0",
    "rimraf": "^5.0.1",
    "typescript": "5.2.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc --build",
    "clean": "rimraf build dist *.tsbuildinfo **/*.tsbuildinfo",
    "test": "mocha --config ../../config/.mocharc.cjs",
    "test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999",
    "watch": "tsc --build --watch"
  }
}