-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
38 lines (38 loc) · 977 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@hot-wallet/sdk",
"version": "0.7.0",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
"./adapter": "./build/adapter/index.js",
"./adapter/ton": "./build/adapter/ton.js",
"./adapter/solana": "./build/adapter/solana.js",
"./adapter/near": "./build/adapter/near.js",
"./adapter/evm": "./build/adapter/evm.js",
".": "./build/index.js"
},
"directories": {
"build": "build"
},
"scripts": {
"build": "tsc",
"example": "cd example && yarn start"
},
"dependencies": {
"@near-js/crypto": "^1.4.0",
"@near-js/utils": "^1.0.0",
"@near-wallet-selector/core": "^8.9.13",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.95.0",
"borsh": "^2.0.0",
"js-sha256": "^0.11.0",
"sha1": "^1.1.1",
"uuid4": "^2.0.3"
},
"devDependencies": {
"@types/sha1": "^1.1.5",
"@types/uuid4": "^2.0.3",
"typescript": "^5.2.2"
}
}