-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.29 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.29 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
61
62
63
64
{
"name": "fhe-x402",
"description": "FHE-powered x402 payment protocol — encrypted amounts, public participants",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20"
},
"license": "BUSL-1.1",
"dependencies": {
"@fhevm/solidity": "^0.11.1",
"@openzeppelin/confidential-contracts": "^0.3.1",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.6.1",
"dotenv": "^17.3.1"
},
"devDependencies": {
"@fhevm/hardhat-plugin": "^0.4.2",
"@fhevm/mock-utils": "0.4.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.30",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@zama-fhe/relayer-sdk": "^0.4.2",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^10.0.3",
"ethers": "^6.16.0",
"hardhat": "^2.28.4",
"hardhat-deploy": "^0.11.45",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"solhint": "^6.0.3",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3"
},
"scripts": {
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"test": "hardhat test",
"test:sepolia": "hardhat test test/Sepolia.onchain.test.ts --network sepolia",
"deploy:sepolia": "hardhat deploy --network sepolia",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"format": "prettier --write \"sdk/src/**/*.ts\" \"packages/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"sdk/src/**/*.ts\" \"packages/**/*.ts\" \"test/**/*.ts\"",
"test:sdk": "cd sdk && npx vitest run",
"test:plugins": "cd packages/virtuals-plugin && npx vitest run && cd ../openclaw-skill && npx vitest run",
"test:all": "npm test && npm run test:sdk && npm run test:plugins",
"clean": "rimraf artifacts cache types dist coverage"
},
"overrides": {
"elliptic@<6.6.0": ">=6.6.0",
"minimatch": "^3.1.2"
}
}