-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.59 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.59 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fhevm-examples-generator",
"description": "FHEVM Example Repository Generator - Zama Bounty December 2025",
"version": "1.0.0",
"engines": {
"node": ">=20",
"npm": ">=7.0.0"
},
"license": "MIT",
"keywords": [
"fhevm",
"zama",
"fhe",
"ethereum",
"hardhat",
"typescript",
"examples",
"bounty"
],
"dependencies": {
"@fhevm/solidity": "^0.9.1",
"@openzeppelin/confidential-contracts": "^0.3.0",
"@openzeppelin/contracts": "^5.4.0",
"encrypted-types": "^0.0.4"
},
"devDependencies": {
"@fhevm/hardhat-plugin": "^0.3.0-1",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-network-helpers": "^1.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.0",
"@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.8",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@zama-fhe/relayer-sdk": "^0.3.0-5",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.15.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"hardhat": "^2.26.0",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^2.3.0",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^2.1.0",
"rimraf": "^6.0.1",
"solhint": "^6.0.0",
"solidity-coverage": "^0.8.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "rimraf ./fhevmTemp ./artifacts ./cache ./coverage ./types ./coverage.json ./dist && npm run typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"postcompile": "npm run typechain",
"test": "hardhat test",
"test:basic": "hardhat test test/basic/*.ts",
"test:encryption": "hardhat test test/encryption/*.ts",
"test:decryption": "hardhat test test/decryption/*.ts",
"test:access-control": "hardhat test test/access-control/*.ts",
"test:random": "hardhat test test/random/*.ts",
"test:anti-patterns": "hardhat test test/anti-patterns/*.ts",
"test:openzeppelin": "hardhat test test/openzeppelin/*.ts",
"test:advanced": "hardhat test test/advanced/*.ts",
"test:sepolia": "hardhat test --network sepolia",
"create-example": "ts-node scripts/create-fhevm-example.ts",
"create-category": "ts-node scripts/create-fhevm-category.ts",
"generate-docs": "ts-node scripts/generate-docs.ts",
"generate-all-docs": "ts-node scripts/generate-docs.ts --all",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"deploy:localhost": "hardhat deploy --network localhost",
"deploy:sepolia": "hardhat deploy --network sepolia"
},
"overrides": {
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"axios@>=1.3.2 <=1.7.3": ">=1.7.4",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"micromatch@<4.0.8": ">=4.0.8",
"undici@>=6.0.0 <6.21.1": ">=6.21.1 <7.0.0",
"cookie@<0.7.0": ">=0.7.0",
"minimatch": "^3.1.2"
}
}