-
Notifications
You must be signed in to change notification settings - Fork 597
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@aztec/examples",
"packageManager": "yarn@4.13.0",
"version": "0.5.0",
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -A -p -v run build"
},
"workspaces": [
"boxes/*"
],
"bin": "bin.js",
"resolutions": {
"@aztec/accounts": "link:../yarn-project/accounts",
"@aztec/aztec.js": "link:../yarn-project/aztec.js",
"@aztec/bb-prover": "link:../yarn-project/bb-prover",
"@aztec/stdlib": "link:../yarn-project/stdlib",
"@aztec/entrypoints": "link:../yarn-project/entrypoints",
"@aztec/foundation": "link:../yarn-project/foundation",
"@aztec/bb.js": "link:../barretenberg/ts",
"@aztec/key-store": "link:../yarn-project/key-store",
"@aztec/kv-store": "link:../yarn-project/kv-store",
"@aztec/pxe": "link:../yarn-project/pxe",
"@aztec/simulator": "link:../yarn-project/simulator",
"@aztec/ethereum": "link:../yarn-project/ethereum",
"@aztec/protocol-contracts": "link:../yarn-project/protocol-contracts",
"@aztec/validator-client": "link:../yarn-project/validator-client",
"@aztec/epoch-cache": "link:../yarn-project/epoch-cache",
"@aztec/prover-client": "link:../yarn-project/prover-client",
"@aztec/blob-client": "link:../yarn-project/blob-client",
"@aztec/noir-contracts.js": "link:../yarn-project/noir-contracts.js",
"@aztec/l1-artifacts": "link:../yarn-project/l1-artifacts",
"@aztec/constants": "link:../yarn-project/constants",
"@aztec/noir-acvm_js": "link:../noir/packages/acvm_js",
"@aztec/noir-types": "link:../noir/packages/types",
"@aztec/noir-noirc_abi": "link:../noir/packages/noirc_abi",
"@aztec/noir-noir_codegen": "link:../noir/packages/noir-noir_codegen",
"@aztec/noir-protocol-circuits-types": "link:../yarn-project/noir-protocol-circuits-types",
"@aztec/world-state": "link:../yarn-project/world-state",
"@aztec/telemetry-client": "link:../yarn-project/telemetry-client",
"@aztec/blob-lib": "link:../yarn-project/blob-lib",
"@aztec/native": "link:../yarn-project/native",
"@aztec/builder": "link:../yarn-project/builder",
"@aztec/types": "link:../yarn-project/types",
"@aztec/utils": "link:../yarn-project/utils",
"@aztec/testing-utils": "link:../yarn-project/testing-utils",
"@aztec/archiver": "link:../yarn-project/archiver",
"@aztec/sequencer-client": "link:../yarn-project/sequencer-client",
"@aztec/p2p": "link:../yarn-project/p2p",
"@aztec/wallets": "link:../yarn-project/wallets",
"@aztec/wallet-sdk": "link:../yarn-project/wallet-sdk",
"rollup": "^4.59.0",
"node-forge": "^1.3.2",
"serialize-javascript": "^7.0.3"
},
"dependencies": {
"@inquirer/confirm": "^3.0.0",
"@inquirer/input": "^2.0.0",
"@inquirer/select": "^2.0.0",
"axios": "^1.15.1",
"commander": "^12.1.0",
"ora": "^8.0.1",
"pino": "^9.5.0",
"pino-pretty": "^10.3.1",
"tiged": "^2.12.6",
"vitest": "^3.0.0"
}
}