-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
75
76
77
{
"name": "wallet-sdk-js",
"version": "0.0.18",
"description": "wallets sdk",
"keywords": [
"wallet",
"MetaMask",
"Torus",
"TronLink",
"UniSign",
"WalletConnect"
],
"author": "dotbitHQ",
"homepage": "https://github.com/dotbitHQ/wallet-sdk-js",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"directories": {
"dist": "dist",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/dotbitHQ/wallet-sdk-js.git"
},
"bugs": {
"url": "https://github.com/dotbitHQ/wallet-sdk-js/issues"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && rollup -c",
"test": "jest --coverage",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"prepublishOnly": "yarn build",
"postversion": "git push --follow-tags"
},
"dependencies": {
"bn.js": "^5.2.0",
"decimal.js": "^10.4.3",
"number-to-bn": "^1.7.0",
"sha3": "^2.1.4",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^26.0.15",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"ethers": "^5.6.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"rimraf": "~3.0.2",
"rollup": "2.33.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^26.4.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}