package.json 780 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@pythnetwork/pyth-lazer-solana-contract",
  3. "private": true,
  4. "license": "ISC",
  5. "scripts": {
  6. "fix:format": "prettier --write **/*.*",
  7. "test:format": "prettier --check **/*.*",
  8. "test:anchor": "CARGO_TARGET_DIR=\"$PWD/target\" anchor test",
  9. "setup": "pnpm ts-node scripts/setup.ts",
  10. "check-trusted-signer": "pnpm ts-node scripts/check_trusted_signer.ts"
  11. },
  12. "dependencies": {
  13. "@coral-xyz/anchor": "^0.30.1"
  14. },
  15. "devDependencies": {
  16. "@types/bn.js": "^5.1.0",
  17. "@types/chai": "^4.3.0",
  18. "@types/mocha": "^9.0.0",
  19. "@types/yargs": "^17.0.33",
  20. "chai": "^4.3.4",
  21. "mocha": "^9.0.3",
  22. "prettier": "catalog:",
  23. "ts-mocha": "^10.0.0",
  24. "ts-node": "^10.9.2",
  25. "typescript": "^4.3.5",
  26. "yargs": "^17.7.2"
  27. }
  28. }