generated from defi-wonderland/aztec-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4 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
{
"name": "aztec-fee-payment-monorepo",
"version": "4.0.0-devnet.2-patch.1",
"private": true,
"repository": "https://github.com/defi-wonderland/aztec-fee-payment.git",
"author": "Wonderland",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/src/ts/index.js",
"types": "./dist/src/ts/index.d.ts"
},
"./artifacts/metered": {
"import": "./dist/src/artifacts/MeteredFPC.js",
"types": "./dist/src/artifacts/MeteredFPC.d.ts"
},
"./artifacts/bridged": {
"import": "./dist/src/artifacts/BridgedFPC.js",
"types": "./dist/src/artifacts/BridgedFPC.d.ts"
},
"./fee-payment-methods": {
"import": "./dist/src/ts/fee-payment-methods/index.js",
"types": "./dist/src/ts/fee-payment-methods/index.d.ts"
},
"./utils": {
"import": "./dist/src/ts/utils/index.js",
"types": "./dist/src/ts/utils/index.d.ts"
}
},
"main": "./dist/src/ts/index.js",
"types": "./dist/src/ts/index.d.ts",
"files": ["dist", "target"],
"scripts": {
"clean": "rm -rf ./src/artifacts/* ./target codegenCache.json",
"codegen": "aztec codegen target --outdir src/artifacts -f",
"compile": "aztec compile",
"build": "yarn compile && yarn codegen && bash scripts/build-package.sh",
"test": "yarn test:nr && yarn test:js",
"test:js": "rm -rf pxe-test-metered && vitest run && yarn test:agent",
"test:nr": "aztec test",
"lint:prettier": "prettier '**/*.{js,ts}' --write",
"ccc": "yarn clean && yarn compile && yarn codegen",
"benchmark": "aztec-benchmark --suffix _base",
"prepare": "husky",
"deploy": "NODE_NO_WARNINGS=1 tsx scripts/deploy.ts",
"deploy:devnet": "NODE_NO_WARNINGS=1 tsx scripts/deploy.ts --network devnet",
"deploy:testnet": "NODE_NO_WARNINGS=1 tsx scripts/deploy.ts --network testnet",
"deploy:local-network": "NODE_NO_WARNINGS=1 tsx scripts/deploy.ts --network local-network",
"deploy:dry-run": "NODE_NO_WARNINGS=1 tsx scripts/deploy.ts --dry-run",
"upload:artifacts": "tsx scripts/upload-artifact.ts",
"fund-fpc": "NODE_NO_WARNINGS=1 tsx scripts/fund-fpc.ts",
"fund-fpc:devnet": "NODE_NO_WARNINGS=1 tsx scripts/fund-fpc.ts --network devnet",
"agent:dev": "NODE_NO_WARNINGS=1 tsx src/ts/agent/index.ts",
"test:agent": "vitest run --config vitest.agent.config.ts"
},
"lint-staged": {
"*.{js,ts}": "prettier --write -u"
},
"dependencies": {
"cors": "2.8.6",
"express": "5.2.1",
"express-rate-limit": "7.5.1",
"pino": "9.14.0",
"pino-pretty": "13.1.3",
"zod": "3.25.76"
},
"devDependencies": {
"@aztec/accounts": "4.0.0-devnet.2-patch.1",
"@aztec/aztec.js": "4.0.0-devnet.2-patch.1",
"@aztec/constants": "4.0.0-devnet.2-patch.1",
"@aztec/entrypoints": "4.0.0-devnet.2-patch.1",
"@aztec/ethereum": "4.0.0-devnet.2-patch.1",
"@aztec/foundation": "4.0.0-devnet.2-patch.1",
"@aztec/noir-contracts.js": "4.0.0-devnet.2-patch.1",
"@aztec/protocol-contracts": "4.0.0-devnet.2-patch.1",
"@aztec/pxe": "4.0.0-devnet.2-patch.1",
"@aztec/stdlib": "4.0.0-devnet.2-patch.1",
"@aztec/wallets": "4.0.0-devnet.2-patch.1",
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@defi-wonderland/aztec-benchmark": "4.0.0-devnet.2-patch.1",
"@types/jest": "30.0.0",
"@types/mocha": "10.0.10",
"@types/node": "25.2.3",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"commander": "14.0.1",
"dotenv": "17.3.1",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"config": {
"aztecVersion": "4.0.0-devnet.2-patch.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
},
"resolutions": {
"@noble/hashes": "1.8.0",
"@aztec/foundation": "4.0.0-devnet.2-patch.1"
}
}