-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.56 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@arienjain/agent-db",
"version": "1.5.2",
"description": "Persistent, encrypted, and permission-controlled memory for autonomous AI agents.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "npm run dev --prefix frontend",
"build": "tsup src/lib/index.ts --format cjs --format esm --dts",
"test": "vitest run tests/",
"test:hardhat": "npx hardhat test",
"server": "npx tsx src/server/index.ts",
"lint": "eslint src --ext .ts",
"demo": "npx tsx src/demo-cli.ts",
"demo:openclaw": "npx tsx src/demo-openclaw.ts",
"demo:filecoin": "npx hardhat run scripts/deployRegistry.ts --network filecoinCalibration",
"demo:defi": "npx tsx src/demo-defi-agent.ts",
"demo:lit": "npx tsx src/demo-lit.ts",
"mcp": "npx tsx src/mcp-server.ts"
},
"readme": "README_NPM.md",
"files": [
"dist",
"README_NPM.md"
],
"type": "module",
"keywords": [
"ai",
"agents",
"ipfs",
"ucan",
"decentralized",
"memory",
"storacha"
],
"author": "Agent DB Team",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@storacha/capabilities": "^2.3.0",
"@storacha/cli": "^2.0.15",
"@storacha/client": "^2.1.1",
"@storacha/upload-client": "^1.4.1",
"@ucanto/core": "^10.4.6",
"@ucanto/principal": "^9.0.3",
"@ucanto/validator": "^10.0.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"@fhevm/solidity": "^0.11.1",
"uuid": "^13.0.0",
"w3name": "^1.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"chai": "^4.5.0",
"dotenv": "^17.3.1",
"esbuild": "^0.27.3",
"ethers": "^6.16.0",
"hardhat": "^3.1.10",
"hardhat-gas-reporter": "^2.3.0",
"solidity-coverage": "^0.8.17",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typechain": "^8.3.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}