You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

84 lines
2.0 KiB

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