-
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) · 945 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 945 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
33
34
35
36
{
"name": "autonet",
"version": "0.1.0",
"description": "Decentralized Autonomous AI Network - Unified framework for distributed AI training, inference, and governance",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:testnet": "hardhat run scripts/deploy.js --network sepolia",
"node": "hardhat node",
"clean": "hardhat clean",
"coverage": "hardhat coverage"
},
"keywords": [
"blockchain",
"ai",
"decentralized",
"training",
"inference",
"governance",
"ethereum",
"solidity"
],
"author": "Autonet Contributors",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"hardhat": "^2.19.0",
"dotenv": "^16.3.1"
},
"dependencies": {
"ethers": "^6.9.0"
}
}