-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 818 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 818 Bytes
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
{
"name": "forks-generator",
"module": "index.ts",
"type": "module",
"scripts": {
"aave": "bun ./scripts/aave.ts",
"uniswap2": "bun ./scripts/uniswap2.ts",
"uniswap3": "bun ./scripts/uniswap3.ts",
"compound2": "bun ./scripts/compound2.ts",
"ichiVault": "bun ./scripts/ichiVault.ts",
"synapseLiquidity": "bun ./scripts/synapseLiquidity.ts",
"simpleSource": "bun ./scripts/simpleSource.ts",
"renameFilesAddSuffix": "bun ./scripts/utils/renameFilesAddSuffix.ts",
"renameFilesRemoveSuffix": "bun ./scripts/utils/renameFilesRemoveSuffix.ts"
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"ethers": "^6.13.0",
"js-yaml": "^4.1.0"
}
}