package.json 884 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@wormhole-foundation/stacks-integration-test",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "scripts": {
  6. "build": "tsc",
  7. "clean": "rm -rf dist",
  8. "test": "vitest",
  9. "test:integration": "vitest integration.test.ts"
  10. },
  11. "author": "",
  12. "license": "ISC",
  13. "dependencies": {
  14. "@certusone/wormhole-sdk-proto-node": "^0.0.7",
  15. "@fast-check/vitest": "^0.2.1",
  16. "@grpc/grpc-js": "^1.13.4",
  17. "@noble/curves": "^1.9.2",
  18. "@noble/hashes": "^1.8.0",
  19. "@noble/secp256k1": "^2.3.0",
  20. "@scure/base": "^1.2.6",
  21. "@stacks/transactions": "^7.2.0",
  22. "@wormhole-foundation/wormhole-cli": "^0.0.4",
  23. "bigint-buffer": "^1.1.5",
  24. "ethers": "^5",
  25. "micro-packed": "^0.7.3"
  26. },
  27. "devDependencies": {
  28. "@types/node": "^20.17.25",
  29. "elliptic": "^6.6.1",
  30. "ts-node": "^10.9.2",
  31. "typescript": "^5.9.3",
  32. "vitest": "^2.1.6"
  33. }
  34. }