This commit is contained in:
2024-04-18 21:12:37 +02:00
commit 78abae13b7
76 changed files with 8565 additions and 0 deletions

26
package.json Executable file
View File

@@ -0,0 +1,26 @@
{
"name": "@tempfix/watcher",
"repository": "github:fabiospampinato/watcher",
"description": "The file system watcher that strives for perfection, with no native dependencies and optional rename detection support.",
"version": "2.3.0",
"type": "module",
"main": "dist_ts/watcher.js",
"exports": "./dist_ts/watcher.js",
"types": "./dist_ts/watcher.d.ts",
"scripts": {},
"keywords": [
"fs",
"file",
"system",
"filesystem",
"watch",
"watcher"
],
"dependencies": {
"stubborn-fs": "^1.2.5"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.72",
"@types/node": "^20.4.6"
}
}