forked from nosana-ci/agent-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "agent-challenge",
"version": "1.0.0",
"main": ".mastra/output/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "mastra dev",
"build": "mastra build",
"start": "mastra start",
"lint": "biome lint ./src",
"format": "biome format ./src/** --write",
"check": "biome check ./src",
"deploy:agent": "nosana job post --file ./nos_job_def/trading_agent.json --market nvidia-3060 --timeout 200",
"deploy:qwen": "nosana job post --file ./nos_job_def/qwen_job.json --market nvidia-3090 --timeout 200"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@mastra/core": "^0.10.5",
"@mastra/libsql": "^0.10.2",
"@mastra/loggers": "^0.10.2",
"@mastra/memory": "^0.10.3",
"dotenv": "^16.5.0",
"hyperliquid": "^1.7.6",
"ollama-ai-provider": "^1.2.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@biomejs/biome": "2.0.4",
"@nosana/cli": "^1.0.52",
"@types/node": "^24.0.3",
"mastra": "^0.10.5",
"typescript": "^5.8.3"
}
}