-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.78 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.78 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
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
{
"name": "@gearbox-protocol/sdk",
"version": "0.0.0-semantic-release",
"description": "Gearbox SDK",
"license": "MIT",
"main": "./dist/cjs/sdk/index.js",
"module": "./dist/esm/sdk/index.js",
"types": "./dist/types/sdk/index.d.ts",
"typings": "./dist/types/sdk/index.d.ts",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/sdk/index.d.ts",
"import": "./dist/esm/sdk/index.js",
"default": "./dist/cjs/sdk/index.js"
},
"./dev": {
"types": "./dist/types/dev/index.d.ts",
"import": "./dist/esm/dev/index.js",
"default": "./dist/cjs/dev/index.js"
},
"./plugins/*": {
"types": "./dist/types/plugins/*/index.d.ts",
"import": "./dist/esm/plugins/*/index.js",
"default": "./dist/cjs/plugins/*/index.js"
},
"./abi/*": {
"types": "./dist/types/abi/*.d.ts",
"import": "./dist/esm/abi/*.js",
"default": "./dist/cjs/abi/*.js"
},
"./permissionless": {
"types": "./dist/types/permissionless/index.d.ts",
"import": "./dist/esm/permissionless/index.js",
"default": "./dist/cjs/permissionless/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsup",
"dev": "tsup --watch",
"example": "tsx --env-file .env scripts/example.ts | pino-pretty",
"test": "vitest",
"prepare": "husky",
"check": "biome check --write",
"check:ci": "biome check --diagnostic-level=error",
"typecheck:ci": "tsc --noEmit"
},
"dependencies": {
"@gearbox-protocol/integrations-v3": "1.52.2",
"@redstone-finance/evm-connector": "^0.9.0",
"@redstone-finance/protocol": "^0.9.0",
"@redstone-finance/sdk": "^0.9.0",
"@redstone-finance/utils": "^0.9.0",
"@types/bn.js": "^5.2.0",
"abitype": "^1.2.3",
"bn.js": "^5.2.2",
"buffer": "^6.0.3",
"date-fns": "^4.1.0",
"decimal.js-light": "^2.5.1",
"viem": ">=2.23.15 <3.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@gearbox-protocol/biome-config": "^1.0.21",
"@types/cross-spawn": "^6.0.6",
"axios": "^1.13.5",
"cross-spawn": "^7.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"viem-deal": "^2.0.4",
"vitest": "^4.0.18"
},
"peerDependencies": {
"axios": "^1.0.0",
"viem-deal": "^2.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,json}": [
"biome check --no-errors-on-unmatched --write"
]
},
"packageManager": "yarn@4.9.2"
}