run npm install to generate a package lock

This commit is contained in:
sashinexists
2024-12-07 13:18:31 +11:00
parent e7d08a91b5
commit 23437d228e
2501 changed files with 290663 additions and 0 deletions

37
node_modules/watcher/package.json generated vendored Executable file
View File

@@ -0,0 +1,37 @@
{
"name": "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.1",
"type": "module",
"main": "dist/watcher.js",
"exports": "./dist/watcher.js",
"types": "./dist/watcher.d.ts",
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"fs",
"file",
"system",
"filesystem",
"watch",
"watcher"
],
"dependencies": {
"dettle": "^1.0.2",
"stubborn-fs": "^1.2.5",
"tiny-readdir": "^2.7.2"
},
"devDependencies": {
"@types/node": "^20.4.6",
"fava": "^0.2.0",
"tsex": "^3.0.0",
"typescript": "^5.1.6"
}
}