package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@pythnetwork/wormhole-attester-sdk",
  3. "version": "1.0.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. "format": "prettier --write \"src/**/*.ts\"",
  15. "copy-artifacts": "node scripts/copyWasm.cjs",
  16. "lint": "tslint -p tsconfig.json",
  17. "postversion": "git push && git push --tags",
  18. "preversion": "npm run lint",
  19. "version": "npm run format && git add -A src"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  24. },
  25. "author": "https://certus.one",
  26. "license": "MIT",
  27. "devDependencies": {
  28. "@openzeppelin/contracts": "^4.2.0",
  29. "@typechain/ethers-v5": "^7.1.2",
  30. "@types/long": "^4.0.1",
  31. "@types/node": "^16.6.1",
  32. "copy-dir": "^1.3.0",
  33. "find": "^0.3.0",
  34. "prettier": "^2.3.2",
  35. "tslint": "^6.1.3",
  36. "tslint-config-prettier": "^1.18.0",
  37. "typescript": "^4.3.5"
  38. },
  39. "peerDependencies": {
  40. "@solana/web3.js": "^1.24.0"
  41. },
  42. "dependencies": {
  43. "@certusone/wormhole-sdk": "0.2.1",
  44. "@improbable-eng/grpc-web-node-http-transport": "^0.14.1",
  45. "@pythnetwork/pyth-sdk-js": "^1.1.0"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/pyth-network/pyth-crosschain/issues"
  49. },
  50. "homepage": "https://github.com/pyth-network/pyth-crosschain#readme"
  51. }