Initial commit: add .gitignore and README
This commit is contained in:
55
package.json
Normal file
55
package.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "defi-starter-kit",
|
||||
"version": "1.0.0",
|
||||
"description": "Comprehensive DeFi starter kit for Aave, Uniswap, Protocolink, and more",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"dev": "tsx watch src/cli/cli.ts",
|
||||
"cli": "tsx src/cli/cli.ts",
|
||||
"test": "forge test",
|
||||
"test:ts": "tsx test",
|
||||
"lint": "eslint . --ext .ts",
|
||||
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
|
||||
"prepare": "pnpm run build",
|
||||
"strat": "tsx src/strat/cli.ts",
|
||||
"strat:run": "tsx src/strat/cli.ts run",
|
||||
"strat:fork": "tsx src/strat/cli.ts fork",
|
||||
"strat:test": "tsx scripts/test-strategy.ts",
|
||||
"check:env": "tsx scripts/check-env.ts",
|
||||
"verify:setup": "tsx scripts/verify-setup.ts"
|
||||
},
|
||||
"keywords": [
|
||||
"defi",
|
||||
"aave",
|
||||
"uniswap",
|
||||
"protocolink",
|
||||
"ethereum",
|
||||
"web3"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"packageManager": "pnpm@8.15.0",
|
||||
"dependencies": {
|
||||
"viem": "^2.21.45",
|
||||
"@protocolink/api": "^1.4.8",
|
||||
"@protocolink/common": "^0.5.5",
|
||||
"@aave/contract-helpers": "^1.36.2",
|
||||
"dotenv": "^16.4.5",
|
||||
"commander": "^12.1.0",
|
||||
"chalk": "^5.3.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.14.12",
|
||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
||||
"@typescript-eslint/parser": "^7.18.0",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"eslint": "^8.57.0",
|
||||
"prettier": "^3.3.3",
|
||||
"tsx": "^4.16.2",
|
||||
"typescript": "^5.5.4"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user