-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "micali",
"version": "1.0.0",
"description": "Ghost Score — private reputation for AI agents",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"deploy:local": "hardhat run scripts/deploy.ts",
"deploy:monad": "hardhat run scripts/deploy.ts --network monad",
"set-oracle": "hardhat run scripts/set-oracle.ts --network monad",
"test": "hardhat test",
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^25.3.2",
"@types/uuid": "^10.0.0",
"hardhat": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.6.1",
"@unlink-xyz/core": "^0.1.8",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"ethers": "^6.13.5",
"express": "^4.21.2",
"socket.io": "^4.8.3",
"uuid": "^11.1.0"
}
}