package.json 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@rust-cashu/cashu",
  3. "version": "0.0.1",
  4. "description": "Cashu protocol implementation, for JavaScript",
  5. "keywords": [
  6. "cashu",
  7. "protocol",
  8. "rust",
  9. "bindings"
  10. ],
  11. "license": "BSD-3-Clause",
  12. "homepage": "https://github.com/thesimplekid/cashu-crab",
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/thesimplekid/cashu-crab"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/thesimplekid/cashu-crab/issues"
  19. },
  20. "author": {
  21. "name": "thesimplekid",
  22. "email": "tsk@thesimplekid.com",
  23. "url": "https://github.com/thesimplekid"
  24. },
  25. "main": "pkg/cashu_js.js",
  26. "types": "pkg/cashu_js.d.ts",
  27. "files": [
  28. "pkg/cashu_js_bg.wasm.js",
  29. "pkg/cashu_js_bg.wasm.d.ts",
  30. "pkg/cashu_js.js",
  31. "pkg/cashu_js.d.ts"
  32. ],
  33. "devDependencies": {
  34. "wasm-pack": "^0.10.2"
  35. },
  36. "engines": {
  37. "node": ">= 10"
  38. },
  39. "scripts": {
  40. }
  41. }