-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
113 lines (113 loc) · 3.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"version": "0.20.0-alpha.16",
"license": "BSD-3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=15"
},
"scripts": {
"build:prod": "rollup -c --environment BUILD:production",
"build": "rollup -c",
"docs:watch": "typedoc --watch",
"docs": "typedoc",
"lint": "eslint .",
"prepare": "husky install && yarn build:prod",
"start": "rollup -c --watch",
"test:watch": "NODE_OPTIONS=--openssl-legacy-provider jest --watch",
"test": "NODE_OPTIONS=--openssl-legacy-provider jest"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"name": "@avalabs/avalanche-wallet-sdk",
"author": "Ava Labs",
"repository": {
"type": "git",
"url": "https://github.com/ava-labs/avalanche-wallet-sdk"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-typescript": "8.3.1",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/big.js": "^6.0.2",
"@types/bn.js": "5.1.0",
"@types/create-hash": "1.2.2",
"@types/crypto-js": "4.1.1",
"@types/hdkey": "2.0.1",
"@types/jest": "29.4.0",
"@types/randomstring": "1.1.8",
"@types/tiny-secp256k1": "1.0.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"@zerollup/ts-transform-paths": "1.7.18",
"avalanche": "3.15.2",
"babel-jest": "29.4.0",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"husky": "6.0.0",
"jest": "29.4.0",
"lint-staged": "12.3.7",
"prettier": "2.6.2",
"rollup": "2.70.1",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-typescript2": "0.31.2",
"semantic-release": "20.1.0",
"ts-node": "10.7.0",
"tslib": "2.3.1",
"ttypescript": "1.5.15",
"typedoc": "0.22.13",
"typescript": "4.6.3"
},
"dependencies": {
"@avalabs/glacier-sdk": "2.8.0-alpha.92",
"@avalabs/hw-app-avalanche": "0.6.6",
"@ethereumjs/common": "2.6.0",
"@ethereumjs/tx": "3.4.0",
"@ledgerhq/hw-app-eth": "6.29.6",
"@ledgerhq/hw-transport": "6.27.5",
"@metamask/eth-sig-util": "4.0.0",
"@obsidiansystems/hw-app-avalanche": "0.2.2",
"@openzeppelin/contracts": "4.9.3",
"big.js": "^6.1.1",
"bip32": "4.0.0",
"bip32-path": "0.4.2",
"bip39": "3.0.4",
"bitcoinjs-lib": "5.2.0",
"bn.js": "5.2.1",
"create-hash": "1.2.0",
"crypto-js": "4.2.0",
"ethereumjs-util": "^7.0.7",
"ethers": "5.6.8",
"hdkey": "2.0.1",
"moment": "2.29.4",
"randomstring": "1.2.2",
"sockette": "2.0.6",
"tiny-secp256k1": "1.1.6",
"typescript-transform-paths": "2.2.3",
"url": "0.11.0",
"web3": "1.10.0",
"web3-eth-contract": "1.10.0",
"xss": "1.0.11"
},
"peerDependencies": {
"avalanche": ">= 3.15.2"
}
}