@solana/transaction-confirmation 3.0.1 → 3.0.3

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 (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/transaction-confirmation",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "Helpers for confirming Solana transactions",
5
5
  "exports": {
6
6
  "edge-light": {
@@ -54,16 +54,16 @@
54
54
  "maintained node versions"
55
55
  ],
56
56
  "dependencies": {
57
- "@solana/codecs-strings": "3.0.1",
58
- "@solana/addresses": "3.0.1",
59
- "@solana/errors": "3.0.1",
60
- "@solana/promises": "3.0.1",
61
- "@solana/keys": "3.0.1",
62
- "@solana/rpc": "3.0.1",
63
- "@solana/rpc-subscriptions": "3.0.1",
64
- "@solana/rpc-types": "3.0.1",
65
- "@solana/transactions": "3.0.1",
66
- "@solana/transaction-messages": "3.0.1"
57
+ "@solana/addresses": "3.0.3",
58
+ "@solana/codecs-strings": "3.0.3",
59
+ "@solana/errors": "3.0.3",
60
+ "@solana/promises": "3.0.3",
61
+ "@solana/keys": "3.0.3",
62
+ "@solana/rpc": "3.0.3",
63
+ "@solana/rpc-subscriptions": "3.0.3",
64
+ "@solana/rpc-types": "3.0.3",
65
+ "@solana/transaction-messages": "3.0.3",
66
+ "@solana/transactions": "3.0.3"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "typescript": ">=5.3.3"
@@ -76,7 +76,7 @@
76
76
  "compile:js": "tsup --config build-scripts/tsup.config.package.ts",
77
77
  "compile:typedefs": "tsc -p ./tsconfig.declarations.json",
78
78
  "dev": "jest -c ../../node_modules/@solana/test-config/jest-dev.config.ts --rootDir . --watch",
79
- "publish-packages": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || (pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks && (([ \"$PUBLISH_TAG\" != \"canary\" ] && pnpm dist-tag add $npm_package_name@$npm_package_version latest) || true))",
79
+ "publish-packages": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || (pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks && (([ -n \"${GITHUB_OUTPUT:-}\" ] && echo 'published=true' >> \"$GITHUB_OUTPUT\") || true) && (([ \"$PUBLISH_TAG\" != \"canary\" ] && pnpm dist-tag add $npm_package_name@$npm_package_version latest) || true))",
80
80
  "style:fix": "pnpm eslint --fix src && pnpm prettier --log-level warn --ignore-unknown --write ./*",
81
81
  "test:lint": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../node_modules/@solana/test-config/jest-lint.config.ts --rootDir . --silent",
82
82
  "test:prettier": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../node_modules/@solana/test-config/jest-prettier.config.ts --rootDir . --silent",