Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions governance/xc_admin/packages/xc_admin_frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"pull:env": "[ $CI ] || VERCEL_ORG_ID=team_BKQrg3JJFLxZyTqpuYtIY0rj VERCEL_PROJECT_ID=prj_TCjesnm3pxM7Ay8oxlTH4xLkkmP9 vercel env pull",
"start:dev": "next dev --port 3004",
"start:prod": "next start --port 3004",
"test:format": "prettier --check .",
"fix:format": "prettier --write .",
"test:lint": "next lint --max-warnings 0"
},
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions lazer/sdk/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
"fix:lint": "eslint --fix . --max-warnings 0",
"test:lint": "eslint . --max-warnings 0",
"test:types": "tsc",
"test:format": "prettier --check .",
"fix:format": "prettier --write .",
"example": "node --loader ts-node/esm examples/index.js",
"doc": "typedoc --out docs/typedoc src",
"publish": "pnpm run script -- publish"
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@
"build:ci": "turbo build --filter=!./apps/api-reference --filter=!./apps/insights --filter=!./apps/staking",
"example:hermes-client": "pnpm i && turbo example --filter @pythnetwork/hermes-client --ui stream",
"fix": "pnpm i && turbo fix",
"fix:format": "prettier --write .",
"publish": "lerna publish from-package --no-private --no-git-tag-version --yes",
"start:dev": "pnpm i && turbo start:dev",
"start:prod": "pnpm i && turbo start:prod",
"test": "pnpm i && turbo test",
"test:ci": "turbo test"
"test:ci": "turbo test",
"test:format": "prettier --check ."
},
"devDependencies": {
"lerna": "^8.1.8",
"prettier": "2.7.1",
"prettier": "^3.5.3",
"turbo": "^2.2.3"
},
"pnpm": {
Expand Down
291 changes: 184 additions & 107 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion pythnet/message_buffer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"version": "0.1.0",
"private": "true",
"scripts": {
"init-buffer": "pnpm exec ts-node scripts/setup_message_buffer.ts"
"init-buffer": "pnpm exec ts-node scripts/setup_message_buffer.ts",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
Expand Down
4 changes: 3 additions & 1 deletion target_chains/aptos/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"main": "index.js",
"scripts": {
"cli": "ts-node src/cli.ts",
"build": "tsc"
"build": "tsc",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"author": "",
"license": "ISC",
Expand Down
7 changes: 5 additions & 2 deletions target_chains/cosmwasm/deploy-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"build": "tsc",
"build-contract": "ts-node ./src/build-contract.ts",
"instantiate-wormhole": "ts-node ./src/instantiate-wormhole.ts",
"instantiate-pyth": "ts-node ./src/instantiate-pyth.ts"
"instantiate-pyth": "ts-node ./src/instantiate-pyth.ts",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"author": "",
"license": "Apache-2.0",
Expand All @@ -25,6 +27,7 @@
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/yargs": "^17.0.18"
"@types/yargs": "^17.0.18",
"prettier": "^3.5.3"
}
}
4 changes: 3 additions & 1 deletion target_chains/cosmwasm/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"private": "true",
"scripts": {
"build": "tsc",
"deploy": "ts-node ./src/ci/deploy.ts"
"deploy": "ts-node ./src/ci/deploy.ts",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"author": "",
"license": "Apache-2.0",
Expand Down
4 changes: 3 additions & 1 deletion target_chains/ethereum/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"receiver-submit-guardian-sets": "truffle exec scripts/receiverSubmitGuardianSetUpgrades.js",
"verify": "truffle run verify $npm_config_module@$npm_config_contract_address --network $npm_config_network",
"install-forge-deps": "forge install foundry-rs/[email protected] --no-git --no-commit",
"coverage": "./coverage.sh"
"coverage": "./coverage.sh",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"author": "",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@
"lib": "lib",
"test": "test"
},
"scripts": {
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@pythnetwork/pyth-sdk-solidity": "^4.0.0"
},
"devDependencies": {
"prettier": "^3.5.3"
}
}
4 changes: 3 additions & 1 deletion target_chains/sui/cli-iota/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"license": "Apache-2.0",
"scripts": {
"cli": "ts-node src/cli.ts",
"build": "tsc"
"build": "tsc",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"private": "true",
"dependencies": {
Expand Down
4 changes: 3 additions & 1 deletion target_chains/sui/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"license": "Apache-2.0",
"scripts": {
"cli": "ts-node src/cli.ts",
"build": "tsc"
"build": "tsc",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"private": "true",
"dependencies": {
Expand Down
4 changes: 3 additions & 1 deletion target_chains/ton/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"scripts": {
"start": "blueprint run",
"build": "blueprint build Main",
"test:unit": "jest --verbose"
"test:unit": "jest --verbose",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"devDependencies": {
"@pythnetwork/pyth-ton-js": "workspace:*",
Expand Down
Loading