-
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) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "project2-trustagent",
"version": "1.0.0",
"description": "> How does one agent know it can trust another? TrustAgent answers that question.",
"main": "index.js",
"scripts": {
"test": "npx hardhat --config hardhat.config.cjs test",
"openserv:test": "node src/openserv_agent.mjs --test",
"openserv:start": "node src/openserv_agent.mjs",
"alkahest:test": "node src/alkahest_escrow.mjs --test",
"alkahest:proof": "node src/alkahest_escrow.mjs --proof",
"alkahest:oracle": "node src/alkahest_escrow.mjs --oracle",
"alkahest:demo": "node src/alkahest_escrow.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devanshug2307/trustagent.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devanshug2307/trustagent/issues"
},
"homepage": "https://github.com/devanshug2307/trustagent#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.2",
"@openzeppelin/contracts": "^5.6.1",
"hardhat": "^2.28.6"
},
"dependencies": {
"@openserv-labs/sdk": "^2.4.1",
"alkahest-ts": "^0.7.5",
"viem": "^2.47.6"
}
}