-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.77 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.77 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"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"
},
"./history": {
"types": "./dist/types/history/index.d.ts",
"import": "./dist/esm/history/index.js",
"default": "./dist/cjs/history/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"
},
"./common-utils": {
"types": "./dist/types/common-utils/index.d.ts",
"import": "./dist/esm/common-utils/index.js",
"default": "./dist/cjs/common-utils/index.js"
},
"./rewards": {
"types": "./dist/types/rewards/index.d.ts",
"import": "./dist/esm/rewards/index.js",
"default": "./dist/cjs/rewards/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:watch": "vitest --project unit",
"test:unit": "vitest run --project unit",
"test:e2e": "vitest run --project e2e",
"test:all": "vitest run",
"test": "vitest run",
"generate:e2e": "NODE_OPTIONS='--max-old-space-size=8192' tsx --env-file .env scripts/generate-e2e-fixtures.ts",
"prepare": "husky",
"check": "biome check --write",
"check:ci": "biome check --diagnostic-level=error",
"typecheck:ci": "tsc --noEmit",
"docs": "NODE_OPTIONS='--max-old-space-size=8192' pnpm --filter @gearbox-protocol/sdk-docs build",
"docs:dev": "pnpm --filter @gearbox-protocol/sdk-docs start",
"docs:serve": "pnpm --filter @gearbox-protocol/sdk-docs serve"
},
"dependencies": {
"@gearbox-protocol/integrations-v3": "1.54.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",
"abitype": "^1.2.3",
"buffer": "^6.0.3",
"date-fns": "^4.1.0",
"viem": ">=2.23.15 <3.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@gearbox-protocol/biome-config": "^1.0.27",
"@types/cross-spawn": "^6.0.6",
"axios": "^1.15.1",
"cross-spawn": "^7.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"viem-deal": "^2.0.4",
"vite": "^8.0.9",
"vitest": "^4.1.4",
"yaml": "^2.8.3"
},
"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": "pnpm@10.33.0"
}