forked from DefiLlama/defillama-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "@defillama/sdk",
"version": "5.0.94",
"description": "SDK for calculating TVL",
"main": "build/index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "LLAMA_DEBUG_MODE='' SDK_DEBUG='' jest",
"update-providers": "ts-node src/util/updateProviderList.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DefiLlama/defillama-sdk.git"
},
"author": "",
"license": "ISC",
"types": "build/index.d.ts",
"files": [
"build"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"@elastic/elasticsearch": "^8.13.1",
"@supercharge/promise-pool": "^2.1.0",
"axios": "^1.6.5",
"ethers": "^6.0.0",
"p-limit": "^3.0.0",
"tron-format-address": "^0.1.11"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}