1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
| {
| "name": "@parcel/watcher",
| "version": "2.5.1",
| "main": "index.js",
| "types": "index.d.ts",
| "repository": {
| "type": "git",
| "url": "https://github.com/parcel-bundler/watcher.git"
| },
| "description": "A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.",
| "license": "MIT",
| "publishConfig": {
| "access": "public"
| },
| "funding": {
| "type": "opencollective",
| "url": "https://opencollective.com/parcel"
| },
| "files": [
| "index.js",
| "index.js.flow",
| "index.d.ts",
| "wrapper.js",
| "package.json",
| "README.md",
| "LICENSE",
| "src",
| "scripts/build-from-source.js",
| "binding.gyp"
| ],
| "scripts": {
| "prebuild": "prebuildify --napi --strip --tag-libc",
| "format": "prettier --write \"./**/*.{js,json,md}\"",
| "build": "node-gyp rebuild",
| "install": "node scripts/build-from-source.js",
| "test": "mocha"
| },
| "engines": {
| "node": ">= 10.0.0"
| },
| "husky": {
| "hooks": {
| "pre-commit": "lint-staged"
| }
| },
| "lint-staged": {
| "*.{js,json,md}": [
| "prettier --write",
| "git add"
| ]
| },
| "dependencies": {
| "detect-libc": "^1.0.3",
| "is-glob": "^4.0.3",
| "micromatch": "^4.0.5",
| "node-addon-api": "^7.0.0"
| },
| "devDependencies": {
| "esbuild": "^0.19.8",
| "fs-extra": "^10.0.0",
| "husky": "^7.0.2",
| "lint-staged": "^11.1.2",
| "mocha": "^9.1.1",
| "napi-wasm": "^1.1.0",
| "prebuildify": "^6.0.1",
| "prettier": "^2.3.2"
| },
| "binary": {
| "napi_versions": [
| 3
| ]
| },
| "optionalDependencies": {
| "@parcel/watcher-darwin-x64": "2.5.1",
| "@parcel/watcher-darwin-arm64": "2.5.1",
| "@parcel/watcher-win32-x64": "2.5.1",
| "@parcel/watcher-win32-arm64": "2.5.1",
| "@parcel/watcher-win32-ia32": "2.5.1",
| "@parcel/watcher-linux-x64-glibc": "2.5.1",
| "@parcel/watcher-linux-x64-musl": "2.5.1",
| "@parcel/watcher-linux-arm64-glibc": "2.5.1",
| "@parcel/watcher-linux-arm64-musl": "2.5.1",
| "@parcel/watcher-linux-arm-glibc": "2.5.1",
| "@parcel/watcher-linux-arm-musl": "2.5.1",
| "@parcel/watcher-android-arm64": "2.5.1",
| "@parcel/watcher-freebsd-x64": "2.5.1"
| }
| }
|
|