-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 903 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 903 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
29
30
31
32
33
34
35
36
37
38
{
"name": "@darksol/autoresearch",
"version": "0.1.0",
"description": "Autonomous trading strategy discovery for Base DEX — Karpathy-style autoresearch with LCM memory",
"type": "module",
"main": "src/index.js",
"bin": {
"autoresearch": "./scripts/run-autoresearch.js"
},
"scripts": {
"fetch-data": "node scripts/fetch-data.js",
"benchmarks": "node scripts/run-benchmarks.js",
"backtest": "node src/backtest.js",
"research": "node scripts/run-autoresearch.js",
"test": "node --test test/*.test.js"
},
"keywords": [
"trading",
"autoresearch",
"defi",
"base",
"uniswap",
"aerodrome",
"openclaw",
"bankr",
"llm",
"autonomous"
],
"author": "Darksol <chris00claw@gmail.com>",
"license": "MIT",
"dependencies": {
"ethers": "^6.16.0",
"playwright": "^1.58.2"
},
"engines": {
"node": ">=20.0.0"
}
}