| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@pythnetwork/express-relay-js",
- "version": "0.12.2",
- "description": "Utilities for interacting with the express relay protocol",
- "homepage": "https://github.com/pyth-network/pyth-crosschain/tree/main/express_relay/sdk/js",
- "author": "Douro Labs",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "build": "tsc",
- "simple-searcher-evm": "pnpm run build && node lib/examples/simpleSearcherEvm.js",
- "simple-searcher-svm": "pnpm run build && node lib/examples/simpleSearcherSvm.js",
- "simple-searcher-limo": "pnpm run build && node lib/examples/simpleSearcherLimo.js",
- "generate-api-types": "openapi-typescript http://127.0.0.1:9000/docs/openapi.json --output src/serverTypes.d.ts",
- "generate-anchor-types": "anchor idl type src/idl/idlExpressRelay.json --out src/expressRelayTypes.d.ts && anchor idl type src/examples/idl/idlDummy.json --out src/examples/dummyTypes.d.ts",
- "format": "prettier --write \"src/**/*.ts\"",
- "test:lint": "eslint src",
- "prepublishOnly": "pnpm run build && pnpm test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run format && git add -A src"
- },
- "keywords": [
- "pyth",
- "oracle",
- "relay"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "express_relay/sdk/js"
- },
- "dependencies": {
- "@coral-xyz/anchor": "^0.30.1",
- "@kamino-finance/limo-sdk": "^0.3.0",
- "@solana/web3.js": "^1.95.3",
- "decimal.js": "^10.4.3",
- "isomorphic-ws": "^5.0.0",
- "openapi-client-axios": "^7.5.5",
- "openapi-fetch": "^0.8.2",
- "viem": "^2.16.2",
- "ws": "^8.17.1"
- },
- "devDependencies": {
- "@pythnetwork/pyth-evm-js": "workspace:*",
- "@types/node": "^20.14.9",
- "@types/yargs": "^17.0.32",
- "@typescript-eslint/eslint-plugin": "^6.21.0",
- "@typescript-eslint/parser": "^6.21.0",
- "eslint": "^8.57.0",
- "jest": "^27.5.1",
- "openapi-typescript": "6.5.5",
- "prettier": "^2.8.8",
- "typescript": "^5.5.2",
- "yargs": "^17.7.2"
- },
- "license": "Apache-2.0"
- }
|