| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@pythnetwork/express-relay-evm-js",
- "version": "0.4.1",
- "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",
- "test": "jest src/ --passWithNoTests",
- "simple-searcher": "npm run build && node lib/examples/simpleSearcher.js",
- "generate-api-types": "openapi-typescript http://127.0.0.1:9000/docs/openapi.json --output src/serverTypes.d.ts",
- "format": "prettier --write \"src/**/*.ts\"",
- "lint": "eslint src",
- "prepublishOnly": "npm run build && npm test && npm run lint",
- "preversion": "npm run lint",
- "version": "npm 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": {
- "isomorphic-ws": "^5.0.0",
- "openapi-client-axios": "^7.5.4",
- "openapi-fetch": "^0.8.2",
- "openapi-typescript": "^6.5.5",
- "viem": "^2.7.6",
- "ws": "^8.16.0"
- },
- "devDependencies": {
- "@pythnetwork/pyth-evm-js": "*",
- "@types/node": "^20.12.7",
- "@types/yargs": "^17.0.10",
- "@typescript-eslint/eslint-plugin": "^5.21.0",
- "@typescript-eslint/parser": "^5.21.0",
- "eslint": "^8.56.0",
- "jest": "^27.5.1",
- "prettier": "^2.6.2",
- "typescript": "^5.3.3",
- "yargs": "^17.4.1"
- },
- "license": "Apache-2.0"
- }
|