generated from FhenixProtocol/fhenix-hardhat-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
{
"name": "@ocskiurity/n0tte",
"version": "1.0.6",
"description": "n0tte enables private on-chain FHE-ML inference on one-layer MLP models interacting with a command-line interface running hardhat scripts.",
"main": "./dist/tasks/cli.js",
"bin": {
"n0tte": "./dist/tasks/cli.js"
},
"scripts": {
"test": "hardhat test",
"clean": "rimraf ./artifacts ./cache ./coverage ./types ./coverage.json ./deployments/localfhenix",
"build": "tsc && pnpm compile",
"compile": "hardhat compile",
"start": "ts-node tasks/cli.ts run-task",
"task:deploy": "hardhat deploy",
"task:set:bias": "hardhat set:bias",
"task:set:weights": "hardhat set:weights",
"task:set:quantized-data": "hardhat set:quantized-data",
"task:inference": "hardhat inference",
"task:all": "hardhat all",
"localfhenix:start": "hardhat localfhenix:start",
"localfhenix:stop": "hardhat localfhenix:stop",
"faucet": "hardhat task:fhenix:usefaucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhenixprotocol/fhenix-hardhat-example.git"
},
"author": "ocskiurity",
"license": "MIT",
"bugs": {
"url": "https://github.com/fhenixprotocol/fhenix-hardhat-example/issues"
},
"homepage": "https://github.com/fhenixprotocol/fhenix-hardhat-example#readme",
"devDependencies": {
"@fhenixprotocol/contracts": "^0.1.0-beta.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "^5.0.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"axios": "^1.6.7",
"chai": "^4.3.7",
"chalk": "^4",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"fhenix-hardhat-docker": "^0.1.1",
"fhenix-hardhat-plugin": "^0.1.1",
"hardhat": "^2.20.1",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.10",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.7",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/figlet": "^1.5.8",
"commander": "^12.1.0",
"fhenixjs": "^0.1.0-beta.6",
"figlet": "^1.7.0",
"ts-node": "^10.9.2"
}
}