forked from hashgraph/hedera-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.7 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
{
"name": "@hashgraph/sdk",
"version": "2.18.1",
"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",
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"license": "Apache-2.0",
"author": "Launchbadge <contact@launchbadge.com>",
"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": ">=10.17.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not op_mini all",
"not ie > 0"
],
"dependencies": {
"@ethersproject/rlp": "^5.6.1",
"@grpc/grpc-js": "^1.6.7",
"@hashgraph/cryptography": "^1.4.1",
"@hashgraph/proto": "2.9.0",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"crypto-js": "^4.1.1",
"js-base64": "^3.7.2",
"js-logger": "^1.6.1",
"long": "^4.0.0",
"protobufjs": "^6.11.3",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/register": "^7.18.9",
"@grpc/proto-loader": "^0.6.13",
"@playwright/test": "^1.23.4",
"@types/chai": "^4.3.1",
"@types/crypto-js": "^4.1.1",
"@types/long": "^4.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-rewrite": "^0.2.0",
"c8": "^7.12.0",
"chai": "^4.3.6",
"chromedriver": "^100.0.0",
"codecov": "^3.8.3",
"dotenv": "^14.3.2",
"dpdm": "^3.9.0",
"eslint": "^8.20.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-node": "^11.1.0",
"expo": "^45.0.6",
"geckodriver": "^3.0.2",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"npx": "^10.2.2",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"typedoc": "^0.22.18",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"yalc": "1.0.0-pre.53"
},
"peerDependencies": {
"expo": "^45.0.3"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
}
}