{
  "name": "@pythnetwork/pyth-aptos-js",
  "version": "1.5.0",
  "description": "Pyth Network Aptos Utilities",
  "homepage": "https://pyth.network",
  "author": {
    "name": "Pyth Data Association"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/pyth-network/pyth-crosschain",
    "directory": "target_chains/aptos/sdk/js"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "pyth",
    "oracle"
  ],
  "license": "Apache-2.0",
  "devDependencies": {
    "@cprussin/eslint-config": "^4.0.2",
    "@truffle/hdwallet-provider": "^2.1.5",
    "@pythnetwork/jest-config": "",
    "@types/ethereum-protocol": "^1.0.2",
    "@types/jest": "^29.4.0",
    "@types/node": "^18.11.18",
    "@types/web3-provider-engine": "^14.0.1",
    "@types/yargs": "^17.0.10",
    "@typescript-eslint/eslint-plugin": "^5.21.0",
    "@typescript-eslint/parser": "^5.21.0",
    "eslint": "^9.23.0",
    "jest": "^29.4.1",
    "prettier": "^3.5.3",
    "web3": "^1.8.2",
    "yargs": "^17.4.1"
  },
  "dependencies": {
    "aptos": "^1.3.14",
    "buffer": "^6.0.3",
    "@pythnetwork/price-service-client": "1.10.0"
  },
  "engines": {
    "node": ">=22.14.0"
  },
  "type": "module",
  "exports": {
    "./AptosPriceServiceConnection": {
      "types": "./dist/AptosPriceServiceConnection.d.ts",
      "default": "./dist/AptosPriceServiceConnection.cjs"
    },
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "ts-duality --noEsm",
    "example-relay": "pnpm run build && node lib/examples/AptosRelay.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",
    "preversion": "pnpm run test:lint",
    "version": "pnpm run format && git add -A src",
    "clean": "rm -rf ./dist"
  }
}