-
Notifications
You must be signed in to change notification settings - Fork 613
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.11 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@aztec/aztec3-packages",
"packageManager": "yarn@4.13.0",
"private": true,
"scripts": {
"ci": "../ci.sh",
"prepare": "node ./scripts/update_package_jsons.mjs && yarn workspaces foreach -A run prepare && workspaces-to-typescript-project-references --tsconfigPath tsconfig.json && prettier -w */tsconfig.json",
"prepare:check": "node ./scripts/update_package_jsons.mjs --check && workspaces-to-typescript-project-references --check --tsconfigPath tsconfig.json",
"docs": "typedoc --out docs/dist && cd docs && yarn serve",
"lint": "./bootstrap.sh lint",
"format": "./bootstrap.sh format",
"test": "./bootstrap.sh test",
"build": "./scripts/tsc.sh",
"build:dev": "./scripts/tsc.sh --watch",
"generate": "FORCE_COLOR=true yarn workspaces foreach -A --parallel --topological-dev --verbose run generate",
"clean": "yarn workspaces foreach -A -p -v run clean"
},
"workspaces": [
"accounts",
"archiver",
"aztec-node",
"aztec.js",
"aztec",
"bb-prover",
"blob-lib",
"blob-client",
"bot",
"builder",
"cli-wallet",
"standard-contracts",
"cli",
"constants",
"docs",
"end-to-end",
"entrypoints",
"epoch-cache",
"ethereum",
"foundation",
"ivc-integration",
"key-store",
"kv-store",
"native",
"node-keystore",
"node-lib",
"noir-contracts.js",
"noir-protocol-circuits-types",
"noir-test-contracts.js",
"p2p-bootstrap",
"p2p",
"protocol-contracts",
"prover-client",
"prover-node",
"pxe",
"scripts",
"sequencer-client",
"simulator",
"slasher",
"sqlite3mc-wasm",
"stdlib",
"telemetry-client",
"txe",
"validator-client",
"validator-ha-signer",
"wallet-sdk",
"wallets",
"world-state"
],
"prettier": "@aztec/foundation/prettier",
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.9.0",
"@swc-node/register": "^1.10.10",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.12",
"@swc/jest": "^0.2.36",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@typescript/native-preview": "7.0.0-dev.20260113.1",
"concurrently": "^9.1.2",
"eslint": "^9.26.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import-x": "^4.6.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"typedoc": "^0.28.16",
"typescript": "^5.3.3"
},
"resolutions": {
"@aztec/bb-avm-sim": "portal:../barretenberg/ts/bb-avm-sim",
"@aztec/bb-avm-sim-darwin-arm64": "portal:../barretenberg/ts/bb-avm-sim/packages/bb-avm-sim-darwin-arm64",
"@aztec/bb-avm-sim-darwin-x64": "portal:../barretenberg/ts/bb-avm-sim/packages/bb-avm-sim-darwin-x64",
"@aztec/bb-avm-sim-linux-arm64": "portal:../barretenberg/ts/bb-avm-sim/packages/bb-avm-sim-linux-arm64",
"@aztec/bb-avm-sim-linux-x64": "portal:../barretenberg/ts/bb-avm-sim/packages/bb-avm-sim-linux-x64",
"@aztec/bb.js": "portal:../barretenberg/ts/bb.js",
"@aztec/ipc-runtime": "portal:../ipc-runtime/ts",
"@aztec/l1-artifacts": "portal:../l1-contracts/l1-artifacts",
"@aztec/wsdb": "portal:../wsdb/ts",
"@aztec/wsdb-darwin-arm64": "portal:../wsdb/ts/packages/wsdb-darwin-arm64",
"@aztec/wsdb-darwin-x64": "portal:../wsdb/ts/packages/wsdb-darwin-x64",
"@aztec/wsdb-linux-arm64": "portal:../wsdb/ts/packages/wsdb-linux-arm64",
"@aztec/wsdb-linux-x64": "portal:../wsdb/ts/packages/wsdb-linux-x64",
"@aztec/noir-acvm_js": "portal:../noir/packages/acvm_js",
"@aztec/noir-types": "portal:../noir/packages/types",
"@aztec/noir-noirc_abi": "portal:../noir/packages/noirc_abi",
"@aztec/noir-noir_codegen": "portal:../noir/packages/noir_codegen",
"@aztec/noir-noir_js": "file:../noir/packages/noir_js",
"jest-runner@npm:^29.7.0": "patch:jest-runner@npm%3A29.7.0#~/.yarn/patches/jest-runner-npm-29.7.0-3bc9f82b58.patch",
"ws": "^8.17.1",
"d3-color": "^3.1.0",
"rollup": "^4.59.0",
"systeminformation": "^5.31.0",
"node-forge": "^1.3.2",
"koa": "^2.16.4",
"serialize-javascript": "^7.0.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"jws": "^4.0.1"
}
}