forked from thelindi/opensea-claudie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "base-721c-arbitrage-bot",
"version": "1.0.0",
"description": "Policy-aware NFT arbitrage bot for Base with OpenSea integration",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"nft",
"arbitrage",
"base",
"opensea",
"seaport"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"axios-retry": "^4.0.0",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"p-limit": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}