package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@certusone/p2w-sdk",
  3. "version": "0.1.0",
  4. "description": "TypeScript library for interacting with Pyth2Wormhole",
  5. "types": "lib/index.d.ts",
  6. "main": "lib/index.js",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "scripts": {
  11. "build": "npm run build-lib",
  12. "build-lib": "npm run copy-artifacts && tsc",
  13. "build-watch": "npm run copy-artifacts && tsc --watch",
  14. "copy-artifacts": "node scripts/copyWasm.cjs",
  15. "lint": "tslint -p tsconfig.json",
  16. "postversion": "git push && git push --tags",
  17. "preversion": "npm run lint",
  18. "version": "npm run format && git add -A src"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/certusone/wormhole.git"
  23. },
  24. "author": "https://certus.one",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "@openzeppelin/contracts": "^4.2.0",
  28. "@typechain/ethers-v5": "^7.1.2",
  29. "@types/long": "^4.0.1",
  30. "@types/node": "^16.6.1",
  31. "copy-dir": "^1.3.0",
  32. "find": "^0.3.0",
  33. "prettier": "^2.3.2",
  34. "tslint": "^6.1.3",
  35. "tslint-config-prettier": "^1.18.0",
  36. "typescript": "^4.3.5"
  37. },
  38. "peerDependencies": {
  39. "@solana/web3.js": "^1.24.0"
  40. },
  41. "dependencies": {
  42. "@certusone/wormhole-sdk": "0.2.1",
  43. "@improbable-eng/grpc-web-node-http-transport": "^0.14.1"
  44. },
  45. "bugs": {
  46. "url": "https://github.com/certusone/wormhole/issues"
  47. },
  48. "homepage": "https://github.com/certusone/wormhole#readme"
  49. }