-
Notifications
You must be signed in to change notification settings - Fork 598
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.32 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.32 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
117
{
"name": "@aztec/pxe",
"version": "0.1.0",
"type": "module",
"typedocOptions": {
"entryPoints": [
"./src/entrypoints/server/index.ts",
"./src/entrypoints/client/lazy/index.ts",
"./src/config/index.ts"
],
"name": "PXE",
"tsconfig": "./tsconfig.json"
},
"exports": {
"./server": "./dest/entrypoints/server/index.js",
"./client/lazy": "./dest/entrypoints/client/lazy/index.js",
"./client/bundle": "./dest/entrypoints/client/bundle/index.js",
"./simulator": "./dest/contract_function_simulator/index.js",
"./config": "./dest/config/index.js"
},
"bin": "./dest/bin/index.js",
"scripts": {
"build": "yarn clean && yarn generate && ../scripts/tsc.sh",
"build:dev": "../scripts/tsc.sh --watch",
"clean": "rm -rf ./dest .tsbuildinfo ./src/config/package_info.ts",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}",
"generate": "node ./scripts/generate_package_info.js",
"check_oracle_version": "node ./dest/bin/check_oracle_version.js"
},
"inherits": [
"../package.common.json",
"./package.local.json"
],
"jest": {
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
},
"testRegex": "./src/.*\\.test\\.(js|mjs|ts)$",
"rootDir": "./src",
"workerThreads": true,
"transform": {
"^.+\\.tsx?$": [
"@swc/jest",
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"transform": {
"decoratorVersion": "2022-03"
}
}
}
]
},
"extensionsToTreatAsEsm": [
".ts"
],
"reporters": [
"default"
],
"testTimeout": 120000,
"setupFiles": [
"../../foundation/src/jest/setup.mjs"
],
"testEnvironment": "../../foundation/src/jest/env.mjs",
"setupFilesAfterEnv": [
"../../foundation/src/jest/setupAfterEnv.mjs"
]
},
"dependencies": {
"@aztec/bb-prover": "workspace:^",
"@aztec/bb.js": "portal:../../barretenberg/ts",
"@aztec/builder": "workspace:^",
"@aztec/constants": "workspace:^",
"@aztec/ethereum": "workspace:^",
"@aztec/foundation": "workspace:^",
"@aztec/key-store": "workspace:^",
"@aztec/kv-store": "workspace:^",
"@aztec/noir-protocol-circuits-types": "workspace:^",
"@aztec/noir-types": "workspace:*",
"@aztec/protocol-contracts": "workspace:^",
"@aztec/simulator": "workspace:^",
"@aztec/stdlib": "workspace:^",
"koa": "^2.16.1",
"koa-router": "^13.1.1",
"lodash.omit": "^4.5.0",
"sha3": "^2.1.4",
"tslib": "^2.4.0",
"viem": "npm:@aztec/viem@2.38.2"
},
"devDependencies": {
"@aztec/merkle-tree": "workspace:^",
"@aztec/noir-test-contracts.js": "workspace:^",
"@jest/globals": "^30.0.0",
"@types/jest": "^30.0.0",
"@types/lodash.omit": "^4.5.7",
"@types/lodash.times": "^4.3.9",
"@types/node": "^22.15.17",
"@typescript/native-preview": "7.0.0-dev.20260113.1",
"jest": "^30.0.0",
"jest-mock-extended": "^4.0.0",
"lodash.times": "^4.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"files": [
"dest",
"src",
"!*.test.*"
],
"types": "./dest/index.d.ts",
"engines": {
"node": ">=20.10"
}
}