package.json 508 B

12345678910111213141516
  1. {
  2. "name": "@napi-rs/package-template-linux",
  3. "version": "0.0.3",
  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": ["napi-rs", "NAPI", "N-API", "Rust", "node-addon", "node-addon-api"],
  8. "main": "index.linux.node",
  9. "files": ["index.linux.node"],
  10. "publishConfig": {
  11. "registry": "https://registry.npmjs.org/",
  12. "access": "public"
  13. },
  14. "os": ["linux"],
  15. "cpu": ["x64"]
  16. }