package.json 559 B

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