package.json 559 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "node-addon-landlock-run-linux-x64",
  3. "version": "0.0.1",
  4. "description": "Prebuilt landlock-run Landlock launcher binary for linux-x64 (static musl) — resolved as a file path by node-addon-landlock-run, never imported",
  5. "os": [
  6. "linux"
  7. ],
  8. "cpu": [
  9. "x64"
  10. ],
  11. "files": [
  12. "README.md",
  13. "bin/",
  14. "prebuilds.json"
  15. ],
  16. "scripts": {
  17. "prepack": "node ../../scripts/verify-launcher-binary.mjs"
  18. },
  19. "engines": {
  20. "node": ">=20"
  21. },
  22. "license": "BSD-3-Clause",
  23. "publishConfig": {
  24. "access": "public"
  25. }
  26. }