-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.6 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "bitriel-wallet-sdk",
"version": "1.1.17",
"description": "This is bitriel Wallet SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "http://selendra.org",
"repository": {
"url": "git+https://github.com/bitriel/wallet-sdk.git"
},
"scripts": {
"build": "tsup",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:execute": "ts-node test/wallet-sdk-excecute.test.ts",
"test:mnemonic": "ts-node test/mnemonic.test.ts",
"test:token-formatters": "ts-node test/tokenFormatters.test.ts"
},
"keywords": [
"bitriel",
"selendra",
"sdk"
],
"author": "samallen",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@covalenthq/client-sdk": "^1.0.2",
"@polkadot/api": "^15.7.2",
"@polkadot/keyring": "^13.4.3",
"@polkadot/types": "^15.7.2",
"@polkadot/util": "^13.4.3",
"@polkadot/util-crypto": "^13.4.3",
"ethers": "^6.12.1"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}