-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "coinbase-agent",
"version": "0.0.1",
"description": "Coinbase agent using agentkit and adk",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prebuild": "pnpm clean",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,js,json}": [
"biome check --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GPSxtreme/coinbase-agent.git"
},
"keywords": [
"ai",
"agent",
"mcp",
"adk-ts",
"IQAI"
],
"author": "IQAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/GPSxtreme/coinbase-agent/issues"
},
"homepage": "https://github.com/GPSxtreme/coinbase-agent#readme",
"dependencies": {
"@coinbase/agentkit": "^0.10.0",
"@coinbase/agentkit-model-context-protocol": "^0.2.0",
"@iqai/adk": "^0.2.3",
"@modelcontextprotocol/sdk": "^1.11.1",
"@openrouter/ai-sdk-provider": "^0.7.3",
"dedent": "^1.6.0",
"dotenv": "^17.2.1",
"viem": "^2.34.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^22.17.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"rimraf": "^6.0.1",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}