-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
38 lines (38 loc) · 1.1 KB
/
dfx.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
{
"canisters": {
"ic_siwe_provider": {
"candid": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.1.1/ic_siwe_provider.did",
"declarations": {
"output": "src/ic_siwe_provider/declarations"
},
"type": "custom",
"wasm": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.1.1/ic_siwe_provider.wasm.gz"
},
"chainkey_testing_canister": {
"candid": "src/chainkey_testing_canister/chainkey_testing_canister.did",
"declarations": {
"output": "src/chainkey_testing_canister/declarations"
},
"type": "custom",
"wasm": "src/chainkey_testing_canister/chainkey_testing_canister.wasm"
},
"backend": {
"candid": "src/backend/backend.did",
"declarations": {
"output": "src/backend/declarations"
},
"package": "backend",
"type": "rust"
},
"frontend": {
"build": ["pnpm run build"],
"declarations": {
"output": "src/frontend/declarations"
},
"source": ["dist"],
"type": "assets"
}
},
"output_env_file": ".env",
"version": 1
}