-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 928 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 928 Bytes
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
{
"name": "@balancednetwork/balanced-js",
"license": "MIT",
"version": "1.2.35",
"description": "🛠 An SDK for building applications on top of BalancedNetwork",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": ["dist", "src"],
"repository": "https://github.com/balancednetwork/balanced-js.git",
"module": "dist/balanced-js.esm.js",
"scripts": {
"lint": "tsdx lint src",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build"
},
"dependencies": {
"@balancednetwork/hw-app-icx": "^1.0.6",
"bignumber.js": "9.0.1",
"icon-sdk-js": "^1.2.1",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/lodash-es": "^4.17.6",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=14.0.0",
"yarn": "^1.22.10"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
}
}