-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "ethagent",
"version": "5.3.2",
"description": "Portable Ethereum identity for your AI agent. Its soul, memory, and skills live onchain via ERC-8004 + IPFS and snap back into any session.",
"type": "module",
"bin": {
"ethagent": "bin/ethagent.js"
},
"files": [
"bin",
"src",
".claude-plugin",
"commands",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/ethagent.js",
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "node test/run-tests.mjs",
"previews": "tsx scripts/render-previews.ts",
"prepack": "npm run build",
"contracts:build": "cd contracts && forge build",
"contracts:test": "cd contracts && forge test -vv",
"contracts:fmt": "cd contracts && forge fmt"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"ethereum",
"identity",
"ai-agent",
"erc-8004",
"ens",
"claude-code",
"ipfs",
"wallet",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/baairon/ethagent.git"
},
"homepage": "https://github.com/baairon/ethagent#readme",
"bugs": {
"url": "https://github.com/baairon/ethagent/issues"
},
"author": "bairon.dev",
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.9.7",
"@noble/hashes": "^1.8.0",
"@noble/post-quantum": "^0.6.1",
"@scure/base": "^2.2.0",
"esbuild": "^0.27.0",
"ink": "^6.8.0",
"react": "^19.2.4",
"tsx": "^4.21.0",
"viem": "^2.48.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"ink-testing-library": "^4.0.0",
"typescript": "^5.9.3"
}
}