forked from ava-labs/avalanche-wallet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.12 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
{
"version": "0.21.0",
"license": "BSD-3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"dist-esm",
"src"
],
"exports": {
".": {
"types": "./dist-esm/index.d.ts",
"require": "./dist/index.js",
"import": "./dist-esm/index.js",
"default": "./dist-esm/index.js"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"build:cjs": "tsc --build ./tsconfig.build.json",
"build:esm": "tsc --build ./tsconfig.build.esm.json",
"build": "yarn build:cjs && yarn build:esm",
"docs:watch": "typedoc --watch",
"docs": "typedoc",
"lint": "eslint .",
"test:watch": "NODE_OPTIONS=--openssl-legacy-provider jest --watch",
"test": "NODE_OPTIONS=--openssl-legacy-provider jest",
"test:win": "set NODE_OPTIONS=--openssl-legacy-provider && jest"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"name": "@runonflux/avalanche-wallet-sdk",
"author": "Ava Labs",
"contributors": [
"Stultus Mundi"
],
"repository": {
"type": "git",
"url": "https://github.com/ZelCore-io/avalanche-wallet-sdk"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "~7.26.0",
"@babel/preset-env": "~7.26.0",
"@babel/preset-typescript": "~7.26.0",
"@types/big.js": "^6.0.2",
"@types/bn.js": "~5.1.0",
"@types/create-hash": "~1.2.2",
"@types/crypto-js": "~4.2.2",
"@types/jest": "~29.5.14",
"@types/randomstring": "~1.3.0",
"@types/tiny-secp256k1": "~2.0.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"babel-jest": "~29.7.0",
"babel-plugin-module-resolver": "~5.0.2",
"eslint": "~9.17.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "~29.7.0",
"lint-staged": "~15.2.11",
"prettier": "~3.4.2",
"ts-node": "~10.9.2",
"tslib": "~2.8.1",
"typedoc": "~0.27.5",
"typescript": "~4.8.4"
},
"dependencies": {
"@avalabs/avalanchejs": "~3.17.0",
"@ethereumjs/common": "~4.4.0",
"@ethereumjs/tx": "~5.4.0",
"@metamask/eth-sig-util": "~8.1.1",
"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.7.2",
"moment": "~2.29.4",
"randomstring": "~1.3.0",
"sockette": "~2.0.6",
"tiny-secp256k1": "~2.2.3",
"url": "~0.11.0",
"web3": "~4.16.0",
"web3-eth-contract": "~4.7.2",
"xss": "~1.0.11"
},
"peerDependencies": {
"@avalabs/avalanchejs": ">= 3.17.0"
}
}