forked from web3-master/zksnark-sudoku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 921 Bytes
/
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
{
"name": "zksnark-sudoku",
"version": "1.0.0",
"description": "Sudoku verifier using zkSNARK.",
"scripts": {
"compile-circuit": "npm run compile --workspace circuit",
"test-circuit": "npm run test --workspace circuit",
"dev": "npm run dev --workspace app",
"build": "npm run build --workspace app",
"pages:build": "npm run pages:build --workspace app",
"preview": "npm run preview --workspace app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-master/zksnark-sudoku.git"
},
"keywords": [
"zksnark",
"circom",
"snarkjs",
"sudoku"
],
"author": "web3-master",
"license": "BSL-1.0",
"bugs": {
"url": "https://github.com/web3-master/zksnark-sudoku/issues"
},
"homepage": "https://github.com/web3-master/zksnark-sudoku#readme",
"workspaces": [
"./packages/*"
],
"dependencies": {
"zkverifyjs": "0.1.0"
}
}