@solana/transaction-confirmation 2.0.0-development.1532546 → 2.0.0-experimental.5ceb5a2
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 +14 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/transaction-confirmation",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-experimental.5ceb5a2",
|
|
4
4
|
"description": "Helpers for confirming Solana transactions",
|
|
5
5
|
"exports": {
|
|
6
6
|
"browser": {
|
|
@@ -49,36 +49,13 @@
|
|
|
49
49
|
"node": ">=17.4"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@solana/addresses": "2.0.0-experimental.
|
|
53
|
-
"@solana/codecs-strings": "2.0.0-experimental.
|
|
54
|
-
"@solana/errors": "2.0.0-experimental.
|
|
55
|
-
"@solana/keys": "2.0.0-experimental.
|
|
56
|
-
"@solana/
|
|
57
|
-
"@solana/rpc-
|
|
58
|
-
"@solana/
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@solana/eslint-config-solana": "^1.0.2",
|
|
62
|
-
"@solana/instructions": "2.0.0-experimental.1532546",
|
|
63
|
-
"@swc/jest": "^0.2.29",
|
|
64
|
-
"@types/jest": "^29.5.11",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
66
|
-
"@typescript-eslint/parser": "^6.3.0",
|
|
67
|
-
"agadoo": "^3.0.0",
|
|
68
|
-
"build-scripts": "0.0.0",
|
|
69
|
-
"eslint": "^8.45.0",
|
|
70
|
-
"eslint-plugin-jest": "^27.4.2",
|
|
71
|
-
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
72
|
-
"jest": "^29.7.0",
|
|
73
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
74
|
-
"jest-runner-eslint": "^2.1.2",
|
|
75
|
-
"jest-runner-prettier": "^1.0.0",
|
|
76
|
-
"prettier": "^3.1",
|
|
77
|
-
"test-config": "0.0.0",
|
|
78
|
-
"tsconfig": "0.0.0",
|
|
79
|
-
"tsup": "^8.0.1",
|
|
80
|
-
"typescript": "^5.2.2",
|
|
81
|
-
"version-from-git": "^1.1.1"
|
|
52
|
+
"@solana/addresses": "2.0.0-experimental.5ceb5a2",
|
|
53
|
+
"@solana/codecs-strings": "2.0.0-experimental.5ceb5a2",
|
|
54
|
+
"@solana/errors": "2.0.0-experimental.5ceb5a2",
|
|
55
|
+
"@solana/keys": "2.0.0-experimental.5ceb5a2",
|
|
56
|
+
"@solana/rpc-core": "2.0.0-development",
|
|
57
|
+
"@solana/rpc-types": "2.0.0-development",
|
|
58
|
+
"@solana/transactions": "2.0.0-experimental.5ceb5a2"
|
|
82
59
|
},
|
|
83
60
|
"bundlewatch": {
|
|
84
61
|
"defaultCompression": "gzip",
|
|
@@ -90,17 +67,17 @@
|
|
|
90
67
|
},
|
|
91
68
|
"scripts": {
|
|
92
69
|
"compile:js": "tsup --config build-scripts/tsup.config.package.ts",
|
|
93
|
-
"compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/build-scripts/add-js-extension-to-types.mjs",
|
|
94
|
-
"dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch",
|
|
70
|
+
"compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/@solana/build-scripts/add-js-extension-to-types.mjs",
|
|
71
|
+
"dev": "jest -c node_modules/@solana/test-config/jest-dev.config.ts --rootDir . --watch",
|
|
95
72
|
"publish-packages": "pnpm publish --tag experimental --access public --no-git-checks",
|
|
96
73
|
"style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/* package.json",
|
|
97
|
-
"test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
|
|
98
|
-
"test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent",
|
|
74
|
+
"test:lint": "jest -c node_modules/@solana/test-config/jest-lint.config.ts --rootDir . --silent",
|
|
75
|
+
"test:prettier": "jest -c node_modules/@solana/test-config/jest-prettier.config.ts --rootDir . --silent",
|
|
99
76
|
"test:treeshakability:browser": "agadoo dist/index.browser.js",
|
|
100
77
|
"test:treeshakability:native": "agadoo dist/index.native.js",
|
|
101
78
|
"test:treeshakability:node": "agadoo dist/index.node.js",
|
|
102
79
|
"test:typecheck": "tsc --noEmit",
|
|
103
|
-
"test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent",
|
|
104
|
-
"test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent"
|
|
80
|
+
"test:unit:browser": "jest -c node_modules/@solana/test-config/jest-unit.config.browser.ts --rootDir . --silent",
|
|
81
|
+
"test:unit:node": "jest -c node_modules/@solana/test-config/jest-unit.config.node.ts --rootDir . --silent"
|
|
105
82
|
}
|
|
106
83
|
}
|