forked from hashgraph/hedera-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.19 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@hashgraph/sdk",
"version": "2.52.0-beta.3",
"description": "Hedera™ Hashgraph SDK",
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"react-native": {
"./lib/index.cjs": "./src/native.js",
"./src/encoding/hex.js": "./src/encoding/hex.native.js",
"./src/encoding/utf8.js": "./src/encoding/utf8.native.js",
"./src/cryptography/sha384.js": "./src/cryptography/sha384.native.js"
},
"browser": {
"./src/index.js": "./src/browser.js",
"./src/encoding/hex.js": "./src/encoding/hex.browser.js",
"./src/encoding/utf8.js": "./src/encoding/utf8.browser.js",
"./src/cryptography/sha384.js": "./src/cryptography/sha384.browser.js",
"crypto": false
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"license": "Apache-2.0",
"author": "Launchbadge <[email protected]>",
"repository": "https://github.com/hashgraph/hedera-sdk-js",
"bugs": "https://github.com/hashgraph/hedera-sdk-js/issues",
"type": "module",
"keywords": [
"hedera",
"hashgraph",
"sdk",
"transactions"
],
"files": [
"lib/",
"src/"
],
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not op_mini all",
"not ie > 0"
],
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/rlp": "^5.7.0",
"@grpc/grpc-js": "1.8.2",
"@hashgraph/cryptography": "1.4.8-beta.8",
"@hashgraph/proto": "2.15.0-beta.4",
"axios": "^1.6.4",
"bignumber.js": "^9.1.1",
"bn.js": "^5.1.1",
"crypto-js": "^4.2.0",
"js-base64": "^3.7.4",
"long": "^4.0.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"protobufjs": "7.2.5",
"rfc4648": "^1.5.3",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-export-namespace-from": "^7.22.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.22.15",
"@babel/register": "^7.22.5",
"@grpc/proto-loader": "^0.7.9",
"@playwright/test": "^1.30.0",
"@types/chai": "^4.3.4",
"@types/crypto-js": "^4.2.0",
"@types/long": "^4.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.10",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-rewrite": "^0.2.0",
"c8": "^8.0.1",
"chai": "^4.3.7",
"chromedriver": "^119.0.1",
"codecov": "^3.8.3",
"dotenv": "^16.0.3",
"dpdm": "^3.11.0",
"elliptic": "^6.5.4",
"eslint": "^8.52.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.2.0",
"expo": "^49.0.16",
"geckodriver": "^4.2.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"npx": "^10.2.2",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"sinon": "^18.0.0",
"typedoc": "^0.25.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"yalc": "1.0.0-pre.53"
},
"peerDependencies": {
"expo": "^49.0.16"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
}
}