-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "@reevl/protokit-runtimes",
"version": "0.1.4",
"description": "Different Auctions & Utility runtimes designed to be used by Protokit zkApps (a zk-AppChain verified on mina). English Auctions, Dutch Auctions, and even **Sealed Bid Auctions** (Blind Auctions)",
"keywords": [
"mina",
"proto-kit",
"auctions",
"zksnarks",
"zkApp-chain"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads ./node_modules/jest/bin/jest.js",
"test:watch": "npm run test --watchAll"
},
"author": "Raunaque97",
"license": "MIT",
"type": "module",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"@proto-kit/common": "latest",
"@proto-kit/module": "latest",
"@proto-kit/protocol": "latest",
"@proto-kit/sdk": "latest",
"o1js": "^0.13.1",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"jest": "^29.6.1",
"jest-expect-message": "^1.1.3",
"loglevel": "^1.8.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"ts-jest": "^29.1.1",
"typescript": "4.9.4",
"url": "^0.11.1",
"util": "^0.12.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raunaque97/protokit-auction-runtimes.git"
},
"bugs": {
"url": "https://github.com/Raunaque97/protokit-auction-runtimes/issues"
},
"homepage": "https://github.com/Raunaque97/protokit-auction-runtimes#readme"
}