-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 931 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 931 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
{
"name": "statesync-verifiable-memory-ledger",
"version": "1.0.0",
"description": "On-chain Memory Hash Chaining primitive for verifiable agent memory with cryptographic recall verification",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "node src/index.js",
"deploy": "npx hardhat run scripts/deploy.js --network localhost",
"test": "npx hardhat test",
"verify": "node src/verify.js",
"dashboard": "node src/dashboard.js"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/wallet": "^5.7.0",
"@helia/ipfs": "^4.0.0",
"express": "^4.18.2",
"helia": "^4.0.0",
"ipfs-http-client": "^60.0.1",
"merkletreejs": "^0.3.11",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.19.0"
},
"engines": {
"node": ">=18.0.0"
}
}