package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@certusone/wormhole-spydk",
  3. "version": "0.1.0",
  4. "description": "Wormhole Spy service SDK for use with @certusone/wormhole-sdk",
  5. "homepage": "https://wormholenetwork.com",
  6. "main": "./lib/cjs/index.js",
  7. "module": "./lib/esm/index.js",
  8. "files": [
  9. "lib/"
  10. ],
  11. "repository": "https://github.com/wormhole-foundation/wormhole/tree/main/spydk/js",
  12. "scripts": {
  13. "build-lib": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
  14. "build-all": "npm run build-lib",
  15. "test": "jest --config jestconfig.json --verbose",
  16. "test-ci": "jest --config jestconfig.json --verbose --setupFiles ./ci-config.js --forceExit",
  17. "build": "npm run build-all",
  18. "format": "echo \"disabled: prettier --write \"src/**/*.ts\"\"",
  19. "lint": "tslint -p tsconfig.json",
  20. "prepublishOnly": "echo \"disabled: npm test && npm run lint\"",
  21. "preversion": "npm run lint",
  22. "version": "npm run format && git add -A src",
  23. "postversion": "git push && git push --tags"
  24. },
  25. "keywords": [
  26. "wormhole",
  27. "bridge",
  28. "token",
  29. "sdk",
  30. "spy"
  31. ],
  32. "author": "certusone",
  33. "license": "Apache-2.0",
  34. "devDependencies": {
  35. "@certusone/wormhole-sdk": "^0.1.1",
  36. "@solana/web3.js": "^1.31.0",
  37. "@types/jest": "^27.0.2",
  38. "@types/node": "^16.6.1",
  39. "ethers": "^5.4.4",
  40. "jest": "^27.3.1",
  41. "prettier": "^2.3.2",
  42. "ts-jest": "^27.0.7",
  43. "tslint": "^6.1.3",
  44. "tslint-config-prettier": "^1.18.0",
  45. "typescript": "^4.3.5"
  46. },
  47. "dependencies": {
  48. "@certusone/wormhole-sdk-proto-node": "^0.0.1",
  49. "@grpc/grpc-js": "^1.6.7"
  50. },
  51. "overrides": {
  52. "elliptic": "^6.6.1"
  53. }
  54. }