-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 KB
/
package.json
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
{
"name": "zkvote-snap",
"version": "0.2.0",
"private": false,
"description": "zkvote snap",
"repository": {
"type": "git",
"url": "https://github.com/p0x-labs/zkVote-snap"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "src/index.ts",
"files": [
"dist/",
"images/",
"prover/",
"wasm/",
"scripts/",
"snap.manifest.json"
],
"scripts": {
"build": "npm run build:snap && npm run build:fix-bundle && npm run build:eval && cp snap.manifest.json dist/",
"build:fix-bundle": "node ./scripts/fix-bundle.js && mm-snap manifest --fix",
"build:eval": "mm-snap eval --verboseErrors",
"build:snap": "mm-snap build --verboseErrors --eval=false",
"start": "mm-snap serve"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^2.0.3",
"@metamask/auto-changelog": "^2.6.0",
"@metamask/eslint-config": "^10.0.0",
"@metamask/eslint-config-jest": "^10.0.0",
"@metamask/eslint-config-nodejs": "^10.0.0",
"@metamask/eslint-config-typescript": "^10.0.0",
"@metamask/snap-types": "^0.22.0",
"@metamask/snaps-cli": "^0.22.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"packageManager": "npm@3.2.1",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"@semaphore-protocol/group": "^2.6.0",
"@semaphore-protocol/identity": "^2.6.0",
"@semaphore-protocol/proof": "^2.6.0",
"@zk-kit/incremental-merkle-tree": "^1.0.0",
"atob": "^2.1.2",
"big-integer": "^1.6.51",
"circomlibjs-0-0-8": "npm:circomlibjs@0.0.8",
"ethers": "^5.7.2",
"log4js": "^6.7.0",
"snarkjs": "^0.5.0"
}
}