-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.8 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "walletfy",
"version": "0.0.2",
"description": "Library and wrapper for many blockchains and wallets.",
"author": "Sammwy",
"license": "ISC",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./typings/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"clean": "rimraf ./dist",
"typings": "tsc --declaration --emitDeclarationOnly --declarationDir ./typings",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run typings",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"@polkadot/api": "^6.10.3",
"@polkadot/keyring": "^8.1.2",
"@polkadot/ui-keyring": "^0.87.5",
"@polkadot/util-crypto": "^8.1.2",
"axios": "^0.24.0",
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"cardano-wallet-js": "^1.2.3",
"ethers": "^5.5.2",
"nanocurrency-web": "^1.3.5",
"tiny-secp256k1": "^2.1.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/sammwyy/Walletfy"
},
"keywords": [
"balance",
"cryptocurrency",
"wallet",
"btc",
"eth",
"ltc",
"xno",
"bitcoin",
"ethereum",
"litecoin",
"nano"
]
}