-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.91 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.91 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
{
"name": "aztec-escrow-extensions",
"version": "3.0.0-devnet.20251212",
"repository": "https://github.com/defi-wonderland/aztec-escrow-extensions.git",
"author": "Wonderland",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -rf ./src/artifacts ./target codegenCache.json",
"codegen": "aztec codegen target --outdir src/artifacts --force",
"compile": "aztec compile",
"test": "yarn test:nr && yarn test:js",
"test:js": "vitest run",
"test:nr": "aztec test",
"lint:prettier": "prettier '**/*.{js,ts}' --write",
"build": "yarn compile && yarn codegen -f",
"prepare": "husky",
"ccc": "yarn clean && yarn compile && yarn codegen && yarn build-aztec-standards",
"build-aztec-standards": "npx tsx scripts/build-aztec-standards.ts dev",
"bench": "NODE_NO_WARNINGS=1 aztec-benchmark --suffix _base"
},
"lint-staged": {
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "3.0.0-devnet.20251212",
"@aztec/aztec.js": "3.0.0-devnet.20251212",
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
"@aztec/protocol-contracts": "3.0.0-devnet.20251212",
"@aztec/pxe": "3.0.0-devnet.20251212",
"@aztec/stdlib": "3.0.0-devnet.20251212",
"@aztec/test-wallet": "3.0.0-devnet.20251212",
"@defi-wonderland/aztec-benchmark": "3.0.0-devnet.20251212"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@types/node": "22.5.1",
"husky": "9.1.7",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"tsx": "4.20.4",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"config": {
"aztecVersion": "3.0.0-devnet.20251212"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
}
}