-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 919 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 919 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
{
"name": "intentkit-xmtp-agent",
"version": "1.0.0",
"description": "XMTP agent that integrates with IntentKit Agent API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"gen:keys": "tsx scripts/generateKeys.ts",
"clean": "rm -rf dist"
},
"keywords": [
"xmtp",
"intentkit",
"agent",
"ai",
"blockchain"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coinbase/cdp-sdk": "^1.34.0",
"@xmtp/content-type-wallet-send-calls": "^2.0.0",
"@xmtp/node-sdk": "^4.0.3",
"dotenv": "^17.2.1",
"uint8arrays": "^5.1.0",
"viem": "^2.33.3"
},
"devDependencies": {
"@types/node": "^24.2.1",
"tsx": "^4.19.2",
"typescript": "^5.9.2"
}
}