-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "test-timeboost",
"version": "1.0.0",
"main": "index.js",
"author": "TucksonDev <[email protected]>",
"license": "MIT",
"devDependencies": {
"@offchainlabs/eslint-config-typescript": "^0.2.2",
"@offchainlabs/prettier-config": "^0.2.1",
"@types/node": "^22.7.6",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
},
"dependencies": {
"@zerodev/ecdsa-validator": "^5.3.3",
"@zerodev/permissions": "^5.4.10",
"@zerodev/sdk": "^5.3.22",
"dotenv": "^16.4.5",
"permissionless": "^0.2.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"viem": "^2.21.29",
"yargs": "^17.7.2"
},
"scripts": {
"testTimeboost": "ts-node src/index.ts",
"sendELTransactions": "scripts/sendELTxs.sh",
"withdrawFunds": "ts-node src/withdrawFunds.ts",
"prettier:check": "prettier --check '**/*.{ts,md,json,yml}'",
"prettier:format": "prettier --write '**/*.{ts,md,json,yml}'"
}
}