package.json 619 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@coral-xyz/borsh",
  3. "version": "0.31.1",
  4. "description": "Anchor Borsh",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "exports": {
  8. ".": "./dist/index.js"
  9. },
  10. "license": "Apache-2.0",
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "engines": {
  15. "node": ">=10"
  16. },
  17. "scripts": {
  18. "build": "tsc",
  19. "test": "",
  20. "clean": "rm -rf dist"
  21. },
  22. "dependencies": {
  23. "bn.js": "^5.1.2",
  24. "buffer-layout": "^1.2.0"
  25. },
  26. "peerDependencies": {
  27. "@solana/web3.js": "^1.69.0"
  28. },
  29. "files": [
  30. "dist"
  31. ],
  32. "devDependencies": {
  33. "@types/node": "^18.11.10"
  34. }
  35. }