-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "psinet-erc8004",
"version": "1.0.0",
"description": "ERC-8004 Trustless Agents implementation for ΨNet (PsiNet)",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"deploy:localhost": "hardhat run scripts/deploy.js --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"deploy:mainnet": "hardhat run scripts/deploy.js --network mainnet",
"node": "hardhat node",
"clean": "hardhat clean",
"verify": "hardhat verify"
},
"keywords": [
"ethereum",
"erc8004",
"ai-agents",
"trustless",
"reputation",
"identity",
"validation",
"psinet",
"decentralized",
"blockchain"
],
"author": "ΨNet Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"ethers": "^6.10.0",
"ipfs-http-client": "^60.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/WGlynn/-Net-PsiNet---the-Psychic-Network-for-AI-Context."
}
}