-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@1claw/agentkit",
"version": "0.57.0",
"description": "Secure AgentKit wallet for autonomous AI agents on Base \u2014 TEE-backed signing, programmatic guardrails, and zero secrets on disk via 1Claw",
"license": "MIT",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"bin": {
"1claw-agentkit": "dist/main.js"
},
"scripts": {
"setup": "tsx scripts/setup.ts",
"build": "tsc",
"dev": "tsx src/main.ts",
"start": "node dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@1claw/sdk": "^0.57.0",
"@modelcontextprotocol/sdk": "^1.12.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@coinbase/agentkit": ">=0.2.0",
"@coinbase/coinbase-sdk": ">=0.12.0"
},
"peerDependenciesMeta": {
"@coinbase/coinbase-sdk": {
"optional": true
},
"@coinbase/agentkit": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/1clawAI/1claw-agentkit.git"
},
"homepage": "https://github.com/1clawAI/1claw-agentkit#readme",
"bugs": {
"url": "https://github.com/1clawAI/1claw-agentkit/issues"
},
"keywords": [
"base",
"mcp",
"security",
"1claw",
"secrets",
"wallet",
"agent",
"ai",
"coinbase",
"agentkit"
],
"overrides": {
"proxy-addr": ">=2.0.8 <3"
}
}