-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "vpnl-registry",
"version": "1.0.0",
"description": "VPNL: The Verifiable Performance Network Layer - On-chain reputation registry for solver verification",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"node": "hardhat node",
"verify:setup": "node scripts/verify-setup.js",
"deploy:sepolia": "hardhat run scripts/deploy.js --network arbitrumSepolia",
"deploy:mainnet": "hardhat run scripts/deploy.js --network arbitrumOne",
"verify:contract": "hardhat verify --network arbitrumSepolia",
"populate:testdata": "hardhat run scripts/populate-testdata.js --network arbitrumSepolia",
"clean": "hardhat clean",
"demo": "cd demo && npm run dev"
},
"keywords": [
"blockchain",
"ethereum",
"arbitrum",
"reputation",
"verifiable-credentials",
"solidity"
],
"author": "VPNL Network",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"chai": "^4.3.10",
"hardhat": "^2.19.4",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@openzeppelin/contracts": "^5.0.1",
"dotenv": "^16.6.1",
"ethers": "^6.9.2"
},
"type": "module"
}