-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 KB
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
{
"name": "@2pi-network/js-sdk",
"version": "0.1.8",
"author": "2PI",
"main": "./dist/index.js",
"homepage": "https://github.com/2pinetwork/sdk",
"license": "MIT",
"scripts": {
"build": "tsc --module commonjs",
"clean": "tsc --build --clean",
"examples": "npm run build && node examples/apys.js",
"doc": "typedoc",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2pinetwork/sdk.git"
},
"bugs": {
"url": "https://github.com/2pinetwork/sdk/issues"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"typedoc": "^0.22.5",
"typescript": "^4.4.2"
},
"dependencies": {
"axios": "^0.22.0",
"bignumber.js": "^9.0.1",
"ethers": "^5.4.6",
"ethers-multicall": "^0.2.1"
},
"publishConfig": {
"access": "public"
}
}