-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 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
{
"name": "corridor",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Corridor — hub repo: docs, the web app, and the Midnight issuer-registry contract. Other components live in Sconce-Labs/corridor-{contracts,circuits,sdk}.",
"license": "Apache-2.0",
"scripts": {
"compile": "compact compile contracts/corridor.compact contracts/managed/corridor",
"proof-server:start": "docker compose up -d",
"proof-server:stop": "docker compose down",
"midnight:deploy": "tsx midnight/deploy.ts",
"midnight:setup": "tsx midnight/setup.ts",
"midnight:issuer": "tsx midnight/issuer.ts",
"midnight:read": "tsx midnight/read.ts",
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@midnight-ntwrk/compact-runtime": "0.16.0",
"@midnight-ntwrk/midnight-js-contracts": "4.1.1",
"@midnight-ntwrk/midnight-js-http-client-proof-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-indexer-public-data-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-level-private-state-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-network-id": "4.1.1",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-protocol": "4.1.1",
"@midnight-ntwrk/midnight-js-types": "4.1.1",
"@midnight-ntwrk/midnight-js-utils": "4.1.1",
"@midnight-ntwrk/wallet-sdk": "1.2.0",
"@scure/bip39": "2.2.0",
"rxjs": "^7.8.2",
"ws": "^8.21.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.23.1",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"@midnight-ntwrk/onchain-runtime-v3": "3.0.0"
},
"keywords": ["midnight", "stellar", "zero-knowledge", "privacy", "kyc"]
}