-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.08 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.08 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
{
"name": "guardianscope",
"version": "1.0.0",
"description": "Decentralized content moderation protocol powered by AI Agents and built on EigenLayer's AVS infrastructure",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"start:anvil": "anvil --block-time 12",
"start:operator": "ts-node operator/index.ts",
"start:traffic":"ts-node operator/createNewTasks.ts",
"compile": "hardhat compile",
"deploy:core": "cd contracts && forge script script/DeployEigenLayerCore.s.sol --rpc-url http://localhost:8545 --broadcast --optimize --optimizer-runs 200 --via-ir",
"deploy:guardianscope": "cd contracts && forge script script/GuardianScopeDeployer.s.sol --rpc-url http://localhost:8545 --broadcast --optimize --optimizer-runs 200 --via-ir",
"deploy:all": "npm run deploy:core && npm run deploy:guardianscope",
"extract:abis": "hardhat extract-abis",
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"build": "cd contracts && forge build",
"format": "prettier --write .",
"coverage": "hardhat coverage"
},
"keywords": [
"blockchain",
"eigenlayer",
"content-moderation",
"ai",
"avs"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.2.0",
"@openzeppelin/contracts-upgradeable": "^5.2.0",
"@openzeppelin/hardhat-upgrades": "^3.9.0",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"dotenv": "^16.4.7",
"eslint": "^8.56.0",
"hardhat": "^2.22.18",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@eigenlayer/contracts": "^0.1.0",
"@eigenlayer/middleware": "^0.1.0",
"@transformers/core": "^7.8.0",
"@transformers/tokenizers": "^7.8.0",
"ethers": "^6.11.1",
"transformers": "^3.1.0",
"winston": "^3.11.0"
},
"engines": {
"node": ">=16.0.0"
}
}