UNPKG

@pythnetwork/solana-utils

Version:

Utility functions for Solana

54 lines 1.45 kB
{ "name": "@pythnetwork/solana-utils", "version": "0.5.0", "description": "Utility functions for Solana", "homepage": "https://pyth.network", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "repository": { "type": "git", "url": "https://github.com/pyth-network/pyth-crosschain.git", "directory": "target_chains/solana/sdk/js/solana_utils" }, "publishConfig": { "access": "public" }, "keywords": [ "pyth", "oracle" ], "license": "Apache-2.0", "devDependencies": { "@solana/wallet-adapter-react": "^0.15.28", "@types/jest": "^29.4.0", "@types/node": "^22.5.1", "@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/parser": "^5.20.0", "eslint": "^8.13.0", "jest": "^29.4.0", "prettier": "^3.5.3", "quicktype": "^23.0.76", "ts-jest": "^29.0.5", "typescript": "^4.6.3" }, "dependencies": { "@coral-xyz/anchor": "^0.29.0", "@solana/web3.js": "^1.90.0", "bs58": "^5.0.0", "jito-ts": "^3.0.1", "ts-log": "^2.2.7" }, "scripts": { "build": "tsc", "test:unit": "jest", "test:lint": "eslint src/ --max-warnings 0", "test:format": "prettier --check \"src/**/*.ts\"", "fix:lint": "eslint src/ --fix --max-warnings 0", "fix:format": "prettier --write \"src/**/*.ts\"", "preversion": "pnpm run test:lint", "version": "pnpm run format && git add -A src" } }