package.json 677 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@napi-rs/package-template-linux-x64-musl",
  3. "version": "1.0.0",
  4. "os": [
  5. "linux"
  6. ],
  7. "cpu": [
  8. "x64"
  9. ],
  10. "libc": [
  11. "musl"
  12. ],
  13. "main": "package-template.linux-x64-musl.node",
  14. "files": [
  15. "package-template.linux-x64-musl.node"
  16. ],
  17. "description": "Template project for writing node package with napi-rs",
  18. "keywords": [
  19. "napi-rs",
  20. "NAPI",
  21. "N-API",
  22. "Rust",
  23. "node-addon",
  24. "node-addon-api"
  25. ],
  26. "license": "MIT",
  27. "engines": {
  28. "node": ">= 10"
  29. },
  30. "publishConfig": {
  31. "registry": "https://registry.npmjs.org/",
  32. "access": "public"
  33. },
  34. "repository": "git@github.com:napi-rs/package-template.git"
  35. }