forked from defi-wonderland/aztec-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "@defi-wonderland/aztec-standards",
"version": "4.1.0-rc.4",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/aztec-standards.git"
},
"author": "Wonderland",
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "husky",
"build": "bash scripts/build-package.sh",
"clean": "rm -rf ./src/artifacts ./target codegenCache.json",
"codegen": "aztec codegen target --outdir src/artifacts -f",
"compile": "aztec compile",
"test": "yarn test:nr && yarn test:js",
"test:js": "vitest run",
"test:nr": "aztec test",
"lint:prettier": "prettier '**/*.{js,ts}' --write",
"bench": "NODE_NO_WARNINGS=1 aztec-benchmark --suffix _base",
"ccc": "yarn clean && yarn compile && yarn codegen"
},
"lint-staged": {
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "4.1.0-rc.4",
"@aztec/aztec.js": "4.1.0-rc.4",
"@aztec/noir-contracts.js": "4.1.0-rc.4",
"@aztec/protocol-contracts": "4.1.0-rc.4",
"@aztec/pxe": "4.1.0-rc.4",
"@aztec/stdlib": "4.1.0-rc.4",
"@aztec/wallet-sdk": "4.1.0-rc.4",
"@aztec/wallets": "4.1.0-rc.4",
"@defi-wonderland/aztec-benchmark": "4.1.0-rc.4"
},
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.2.0",
"@types/node": "25.0.10",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"config": {
"aztecVersion": "4.1.0-rc.4"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}