-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.74 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.74 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
{
"name": "@maci-protocol/cli",
"version": "3.0.0",
"private": false,
"description": "CLI utilities for MACI",
"main": "build/ts/index.js",
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"default": "./build/ts/index.js"
}
},
"bin": {
"maci-cli": "./build/ts/index.js"
},
"files": [
"build",
"CHANGELOG.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json ./build",
"types": "tsc -p tsconfig.json --noEmit",
"docs": "typedoc --plugin typedoc-plugin-markdown --options ./typedoc.json"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"commander": "^14.0.0",
"dotenv": "^17.2.2",
"ethers": "^6.15.0",
"hardhat": "^2.25.0",
"@maci-protocol/domainobjs": "^3.0.0",
"@maci-protocol/sdk": "^1.0.0",
"prompt": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.11.0",
"@types/prompt": "^1.1.9",
"@types/snarkjs": "^0.7.9",
"chai": "^4.3.10",
"chai-as-promised": "^8.0.1",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"snarkjs": "^0.7.5",
"ts-mocha": "^11.1.0",
"typescript": "^5.9.2"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"extensions": [
".ts"
],
"all": true,
"exclude": [
"**/*.js",
"**/*.d.ts",
"hardhat.config.ts",
"tests/**/*.ts",
"ts/index.ts"
],
"branches": ">50%",
"lines": ">50%",
"functions": ">50%",
"statements": ">50%"
}
}