-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 836 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
{
"name": "snarkyjs-blind-mans-bluff",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"exec": "tsc && node dist/blind.js",
"one": "tsc && node dist/1_exercise_access.js",
"two": "tsc && node dist/1_exercise_multiple_access.js",
"circuit": "tsc && node dist/circuitPractice.js",
"blind": "tsc && node dist/blind.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wotomas/BlindMansBluff.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=16.4.0"
},
"homepage": "https://github.com/wotomas/BlindMansBluff/blob/main/README.md",
"dependencies": {
"prettier": "^2.5.0",
"snarkyjs": "0.1.10",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/node": "^16.11.12"
}
}