| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@pythnetwork/pyth-evm-js",
- "version": "2.0.0-alpha2",
- "description": "Pyth Network EVM Utils in JS",
- "homepage": "https://pyth.network",
- "author": {
- "name": "Pyth Data Association"
- },
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "target_chains/ethereum/sdk/js"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "build": "tsc",
- "test:format": "prettier --check \"src/**/*.ts\"",
- "test:lint": "eslint src/ --max-warnings 0",
- "fix:format": "prettier --write \"src/**/*.ts\"",
- "fix:lint": "eslint src/ --fix --max-warnings 0",
- "prepublishOnly": "pnpm run build && pnpm run test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run test:format && git add -A src"
- },
- "keywords": [
- "pyth",
- "oracle"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@cprussin/eslint-config": "catalog:",
- "@pythnetwork/pyth-sdk-solidity": "workspace:*",
- "@truffle/hdwallet-provider": "^2.1.5",
- "@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",
- "eslint": "catalog:",
- "jest": "^29.4.1",
- "prettier": "catalog:",
- "ts-jest": "^29.0.5",
- "typescript": "catalog:"
- },
- "dependencies": {
- "@pythnetwork/hermes-client": "workspace:*",
- "viem": "catalog:"
- }
- }
|