@solana/transactions 2.0.0-experimental.098806e → 2.0.0-experimental.0af01ac

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/transactions",
3
- "version": "2.0.0-experimental.098806e",
3
+ "version": "2.0.0-experimental.0af01ac",
4
4
  "description": "Helpers for creating and serializing transactions",
5
5
  "exports": {
6
6
  "browser": {
@@ -46,37 +46,14 @@
46
46
  "maintained node versions"
47
47
  ],
48
48
  "dependencies": {
49
- "@solana/addresses": "2.0.0-experimental.098806e",
50
- "@solana/codecs-core": "2.0.0-experimental.098806e",
51
- "@solana/codecs-data-structures": "2.0.0-experimental.098806e",
52
- "@solana/codecs-strings": "2.0.0-experimental.098806e",
53
- "@solana/functional": "2.0.0-experimental.098806e",
54
- "@solana/codecs-numbers": "2.0.0-experimental.098806e",
55
- "@solana/keys": "2.0.0-experimental.098806e"
56
- },
57
- "devDependencies": {
58
- "@solana/eslint-config-solana": "^1.0.2",
59
- "@swc/jest": "^0.2.29",
60
- "@types/jest": "^29.5.11",
61
- "@types/node": "18.11.19",
62
- "@typescript-eslint/eslint-plugin": "^6.13.2",
63
- "@typescript-eslint/parser": "^6.3.0",
64
- "agadoo": "^3.0.0",
65
- "eslint": "^8.45.0",
66
- "eslint-plugin-sort-keys-fix": "^1.1.2",
67
- "jest": "^29.7.0",
68
- "jest-runner-eslint": "^2.1.2",
69
- "jest-runner-prettier": "^1.0.0",
70
- "prettier": "^3.1",
71
- "tsup": "^8.0.1",
72
- "typescript": "^5.2.2",
73
- "version-from-git": "^1.1.1",
74
- "@solana/instructions": "2.0.0-experimental.098806e",
75
- "@solana/rpc-types": "2.0.0-experimental.098806e",
76
- "build-scripts": "0.0.0",
77
- "test-config": "0.0.0",
78
- "test-matchers": "0.0.0",
79
- "tsconfig": "0.0.0"
49
+ "@solana/codecs-core": "2.0.0-experimental.0af01ac",
50
+ "@solana/addresses": "2.0.0-experimental.0af01ac",
51
+ "@solana/codecs-data-structures": "2.0.0-experimental.0af01ac",
52
+ "@solana/codecs-numbers": "2.0.0-experimental.0af01ac",
53
+ "@solana/codecs-strings": "2.0.0-experimental.0af01ac",
54
+ "@solana/errors": "2.0.0-experimental.0af01ac",
55
+ "@solana/functional": "2.0.0-experimental.0af01ac",
56
+ "@solana/keys": "2.0.0-experimental.0af01ac"
80
57
  },
81
58
  "bundlewatch": {
82
59
  "defaultCompression": "gzip",
@@ -88,17 +65,18 @@
88
65
  },
89
66
  "scripts": {
90
67
  "compile:js": "tsup --config build-scripts/tsup.config.package.ts",
91
- "compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/build-scripts/add-js-extension-to-types.mjs",
92
- "dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch",
93
- "publish-packages": "pnpm publish --tag experimental --access public --no-git-checks",
68
+ "compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/@solana/build-scripts/add-js-extension-to-types.mjs",
69
+ "dev": "jest -c node_modules/@solana/test-config/jest-dev.config.ts --rootDir . --watch",
70
+ "publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || pnpm publish --tag experimental --access public --no-git-checks",
71
+ "publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
94
72
  "style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/* package.json",
95
- "test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
96
- "test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent",
73
+ "test:lint": "jest -c node_modules/@solana/test-config/jest-lint.config.ts --rootDir . --silent",
74
+ "test:prettier": "jest -c node_modules/@solana/test-config/jest-prettier.config.ts --rootDir . --silent",
97
75
  "test:treeshakability:browser": "agadoo dist/index.browser.js",
98
76
  "test:treeshakability:native": "agadoo dist/index.native.js",
99
77
  "test:treeshakability:node": "agadoo dist/index.node.js",
100
78
  "test:typecheck": "tsc --noEmit",
101
- "test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent",
102
- "test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent"
79
+ "test:unit:browser": "jest -c node_modules/@solana/test-config/jest-unit.config.browser.ts --rootDir . --silent",
80
+ "test:unit:node": "jest -c node_modules/@solana/test-config/jest-unit.config.node.ts --rootDir . --silent"
103
81
  }
104
82
  }