signet.js 0.0.12-beta.11 → 0.0.12-beta.13
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/README.md +21 -35
- package/browser/index.browser.cjs +2 -2
- package/browser/index.browser.cjs.map +1 -1
- package/browser/index.browser.js +2 -2
- package/browser/index.browser.js.map +1 -1
- package/node/index.node.cjs +2 -2
- package/node/index.node.cjs.map +1 -1
- package/node/index.node.js +2 -2
- package/node/index.node.js.map +1 -1
- package/package.json +8 -14
- package/types/index.d.cts +650 -234
- package/types/index.d.ts +650 -234
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signet.js",
|
|
3
|
-
"version": "0.0.12-beta.
|
|
3
|
+
"version": "0.0.12-beta.13",
|
|
4
4
|
"description": "A TypeScript library for handling multi-chain transactions and signatures using Signet MPC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -27,15 +27,19 @@
|
|
|
27
27
|
"build:browser": "tsup --env.TARGET=browser",
|
|
28
28
|
"build:node": "tsup --env.TARGET=node",
|
|
29
29
|
"build:post": "mkdir -p dist/types && cp dist/node/index.d.ts dist/node/index.d.cts dist/types/ && rm dist/node/index.d.ts dist/node/index.d.cts",
|
|
30
|
+
"test:solana": "vitest run tests/integration/solana/Solana.integration.test.ts",
|
|
31
|
+
"test:solana:watch": "vitest --watch tests/integration/solana/Solana.integration.test.ts",
|
|
30
32
|
"pre:deploy": "npm run build && npm run docs:build",
|
|
31
33
|
"publish-npm": "npm run pre:deploy && cd dist && npm publish",
|
|
32
34
|
"publish-npm:beta": "npm run pre:deploy && cd dist && npm publish --tag beta",
|
|
33
35
|
"hardhat": "pnpm exec hardhat node --config hardhat.config.mts",
|
|
34
36
|
"test": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest run && pkill -f hardhat",
|
|
35
37
|
"test:watch": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest --watch",
|
|
38
|
+
"test:ci": "pnpm exec hardhat node --config hardhat.config.mts & NODE_PID=$!; sleep 2 && vitest run; kill $NODE_PID",
|
|
36
39
|
"docs:dev": "vocs dev",
|
|
37
40
|
"docs:build": "vocs build",
|
|
38
|
-
"docs:preview": "vocs preview"
|
|
41
|
+
"docs:preview": "vocs preview",
|
|
42
|
+
"format": "prettier --write ."
|
|
39
43
|
},
|
|
40
44
|
"author": "Sig Network",
|
|
41
45
|
"license": "MIT",
|
|
@@ -51,8 +55,7 @@
|
|
|
51
55
|
"multi-chain",
|
|
52
56
|
"ethereum",
|
|
53
57
|
"bitcoin",
|
|
54
|
-
"cosmos"
|
|
55
|
-
"near"
|
|
58
|
+
"cosmos"
|
|
56
59
|
],
|
|
57
60
|
"devDependencies": {
|
|
58
61
|
"@aa-sdk/core": "^4.13.0",
|
|
@@ -89,25 +92,16 @@
|
|
|
89
92
|
"@cosmjs/math": "^0.32.4",
|
|
90
93
|
"@cosmjs/proto-signing": "^0.32.4",
|
|
91
94
|
"@cosmjs/stargate": "^0.32.4",
|
|
92
|
-
"@near-js/accounts": "^1.3.0",
|
|
93
|
-
"@near-js/crypto": "^1.4.0",
|
|
94
|
-
"@near-js/keystores": "^0.2.0",
|
|
95
|
-
"@near-js/transactions": "^1.3.1",
|
|
96
|
-
"@near-js/types": "^0.3.1",
|
|
97
|
-
"@near-wallet-selector/core": "^8.9.5",
|
|
98
95
|
"@scure/base": "^1.2.4",
|
|
99
96
|
"@solana/web3.js": "^1.98.0",
|
|
100
97
|
"bech32": "^2.0.0",
|
|
101
98
|
"bitcoinjs-lib": "^6.1.5",
|
|
102
99
|
"bn.js": "^5.2.1",
|
|
103
|
-
"bs58": "^6.0.0",
|
|
104
100
|
"chain-registry": "^1.69.72",
|
|
105
101
|
"coinselect": "^3.1.13",
|
|
106
102
|
"cosmjs-types": "^0.9.0",
|
|
107
103
|
"elliptic": "^6.6.1",
|
|
108
|
-
"js-sha3": "^0.9.3",
|
|
109
|
-
"near-api-js": "^5.0.1",
|
|
110
104
|
"viem": "^2.22.14"
|
|
111
105
|
},
|
|
112
|
-
"packageManager": "pnpm@10.
|
|
106
|
+
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
|
|
113
107
|
}
|