| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- "name": "@pythnetwork/price-service-client",
- "version": "1.9.1",
- "description": "Pyth price service client",
- "deprecated": "This package is deprecated and is no longer maintained. Please use @pythnetwork/hermes-client instead.",
- "author": {
- "name": "Pyth Data Association"
- },
- "homepage": "https://pyth.network",
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "price_service/client/js"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "test:e2e": "jest --testPathPattern=.*.e2e.test.ts",
- "build": "ts-duality --noEsm",
- "example": "pnpm run build && node lib/examples/PriceServiceClient.js",
- "fix:format": "prettier --write \"src/**/*.ts\"",
- "fix:lint": "eslint src/ --fix --max-warnings 0",
- "test:format": "prettier --check \"src/**/*.ts\"",
- "test:lint": "eslint src/ --max-warnings 0",
- "prepublishOnly": "pnpm run build && pnpm run test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run format && git add -A src",
- "clean": "rm -rf ./dist"
- },
- "keywords": [
- "pyth",
- "oracle"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@cprussin/eslint-config": "catalog:",
- "@types/jest": "^29.4.0",
- "@types/yargs": "^17.0.10",
- "eslint": "catalog:",
- "jest": "^29.4.0",
- "prettier": "catalog:",
- "ts-jest": "^29.0.5",
- "yargs": "^17.4.1"
- },
- "dependencies": {
- "@pythnetwork/price-service-sdk": "workspace:*",
- "@types/ws": "^8.5.3",
- "axios": "^1.5.1",
- "axios-retry": "^4.0.0",
- "isomorphic-ws": "^4.0.1",
- "ts-log": "^2.2.4",
- "ws": "^8.6.0"
- },
- "engines": {
- "node": ">=22.16.0",
- "pnpm": ">=10.19.0"
- },
- "packageManager": "pnpm@10.19.0",
- "type": "module",
- "exports": {
- "./PriceServiceConnection": {
- "default": "./dist/PriceServiceConnection.js",
- "types": "./dist/PriceServiceConnection.d.ts"
- },
- "./ResillientWebSocket": {
- "default": "./dist/ResillientWebSocket.js",
- "types": "./dist/ResillientWebSocket.d.ts"
- },
- ".": {
- "default": "./dist/index.js",
- "types": "./dist/index.d.ts"
- },
- "./utils": {
- "default": "./dist/utils.js",
- "types": "./dist/utils.d.ts"
- },
- "./package.json": "./package.json"
- },
- "module": "./dist/esm/index.js"
- }
|