Skip to content

Commit 77ccbcf

Browse files
committed
fix(price-pusher) Fix node issue
1 parent 8e51c95 commit 77ccbcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/price_pusher/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/price-pusher",
3-
"version": "10.3.0",
3+
"version": "10.3.1",
44
"description": "Pyth Price Pusher",
55
"homepage": "https://pyth.network",
66
"main": "./dist/index.cjs",
@@ -9,7 +9,7 @@
99
"dist/**/*"
1010
],
1111
"bin": {
12-
"pyth-price-pusher": "./dist/index.js"
12+
"pyth-price-pusher": "./dist/index.cjs"
1313
},
1414
"repository": {
1515
"type": "git",
@@ -25,7 +25,7 @@
2525
"fix:lint": "eslint src/ --fix --max-warnings 0",
2626
"test:format": "prettier --check \"src/**/*.ts\"",
2727
"test:lint": "eslint src/ --max-warnings 0",
28-
"start": "node dist/index.js",
28+
"start": "node dist/index.cjs",
2929
"dev": "ts-node src/index.ts",
3030
"prepublishOnly": "pnpm run build && pnpm run test:lint",
3131
"preversion": "pnpm run test:lint",

0 commit comments

Comments
 (0)