-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "@flair-sdk/solution-indexing-defi-lending",
"version": "0.0.42",
"private": false,
"description": "Customizable ready-made on-chain EVM data indexing for defin lending protocols",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest run --coverage",
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "pnpm lint --apply-unsafe",
"build": "rm -rf dist && tsc --project tsconfig.json --outDir ./dist --removeComments --verbatimModuleSyntax false",
"publish:patch": "npm run build && npm version patch && npm publish --access public",
"publish:minor": "npm run build && npm version minor && npm publish --access public",
"publish:major": "npm run build && npm version major && npm publish --access public"
},
"keywords": [],
"author": "[email protected]",
"files": [
"*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"peerDependencies": {
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rome": "^12.1.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@flair-sdk/contracts": "^2.27.0",
"@flair-sdk/registry": "^2.27.0",
"axios": "0.26.1",
"ethers": "^5.7.2",
"flair-sdk": "^1.12.5",
"p-limit": "^5.0.0"
}
}