@pythnetwork/price-pusher 10.3.0 → 10.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.cjs +0 -0
  2. package/package.json +9 -9
package/dist/index.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pythnetwork/price-pusher",
3
- "version": "10.3.0",
3
+ "version": "10.3.1",
4
4
  "description": "Pyth Price Pusher",
5
5
  "homepage": "https://pyth.network",
6
6
  "main": "./dist/index.cjs",
@@ -9,7 +9,7 @@
9
9
  "dist/**/*"
10
10
  ],
11
11
  "bin": {
12
- "pyth-price-pusher": "./dist/index.js"
12
+ "pyth-price-pusher": "./dist/index.cjs"
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
@@ -70,16 +70,16 @@
70
70
  "viem": "^2.19.4",
71
71
  "yaml": "^2.1.1",
72
72
  "yargs": "^17.5.1",
73
- "@pythnetwork/price-service-sdk": "^1.9.0",
74
73
  "@pythnetwork/pyth-fuel-js": "1.1.0",
75
- "@pythnetwork/pyth-sui-js": "2.4.0",
76
- "@pythnetwork/pyth-ton-js": "0.3.0",
77
- "@pythnetwork/pyth-sdk-solidity": "4.3.0",
74
+ "@pythnetwork/pyth-sdk-solidity": "4.3.1",
78
75
  "@pythnetwork/pyth-solana-receiver": "0.13.0",
79
- "@pythnetwork/solana-utils": "0.6.0"
76
+ "@pythnetwork/pyth-sui-js": "2.4.0",
77
+ "@pythnetwork/pyth-ton-js": "0.4.0",
78
+ "@pythnetwork/solana-utils": "0.6.0",
79
+ "@pythnetwork/price-service-sdk": "^1.9.0"
80
80
  },
81
81
  "engines": {
82
- "node": ">=22.14.0"
82
+ "node": "^24.0.0"
83
83
  },
84
84
  "type": "module",
85
85
  "exports": {
@@ -224,7 +224,7 @@
224
224
  "fix:lint": "eslint src/ --fix --max-warnings 0",
225
225
  "test:format": "prettier --check \"src/**/*.ts\"",
226
226
  "test:lint": "eslint src/ --max-warnings 0",
227
- "start": "node dist/index.js",
227
+ "start": "node dist/index.cjs",
228
228
  "dev": "ts-node src/index.ts",
229
229
  "preversion": "pnpm run test:lint",
230
230
  "version": "pnpm run test:format && pnpm run test:lint && git add -A src",