-
Notifications
You must be signed in to change notification settings - Fork 595
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.41 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.41 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@aztec/stdlib",
"version": "0.1.0",
"type": "module",
"inherits": [
"../package.common.json",
"./package.local.json"
],
"exports": {
"./aztec-address": "./dest/aztec-address/index.js",
"./abi": "./dest/abi/index.js",
"./hash": "./dest/hash/index.js",
"./keys": "./dest/keys/index.js",
"./testing": "./dest/tests/index.js",
"./testing/fixtures": "./dest/tests/fixtures.js",
"./network": "./dest/network/index.js",
"./utils": "./dest/utils/index.js",
"./types": "./dest/types/index.js",
"./contract": "./dest/contract/index.js",
"./simulation": "./dest/simulator/index.js",
"./rollup": "./dest/rollup/index.js",
"./kernel": "./dest/kernel/index.js",
"./trees": "./dest/trees/index.js",
"./logs": "./dest/logs/index.js",
"./avm": "./dest/avm/index.js",
"./schemas": "./dest/schemas/index.js",
"./noir": "./dest/noir/index.js",
"./shared-mutable": "./dest/shared_mutable/index.js",
"./parity": "./dest/parity/index.js",
"./vks": "./dest/vks/index.js",
"./proofs": "./dest/proofs/index.js",
"./messaging": "./dest/messaging/index.js",
"./gas": "./dest/gas/index.js",
"./tx": "./dest/tx/index.js",
"./fees": "./dest/fees/index.js",
"./note": "./dest/note/index.js",
"./event": "./dest/event/index.js",
"./p2p": "./dest/p2p/index.js",
"./errors": "./dest/errors/index.js",
"./stats": "./dest/stats/index.js",
"./auth-witness": "./dest/auth_witness/index.js",
"./block": "./dest/block/index.js",
"./versioning": "./dest/versioning/index.js",
"./interfaces/client": "./dest/interfaces/client.js",
"./interfaces/server": "./dest/interfaces/server.js",
"./epoch-helpers": "./dest/epoch-helpers/index.js",
"./config": "./dest/config/index.js",
"./testing/jest": "./dest/tests/jest.js",
"./database-version": "./dest/database-version/index.js",
"./validators": "./dest/validators/index.js",
"./file-store": "./dest/file-store/index.js",
"./snapshots": "./dest/snapshots/index.js"
},
"typedocOptions": {
"entryPoints": [
"./src/index.ts"
],
"name": "stdlib",
"tsconfig": "./tsconfig.json"
},
"scripts": {
"build": "yarn clean && yarn generate && tsc -b",
"generate": "./scripts/copy-contracts.sh",
"build:dev": "tsc -b --watch",
"clean": "rm -rf ./dest .tsbuildinfo",
"formatting": "run -T prettier --check ./src && run -T eslint ./src",
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
},
"dependencies": {
"@aztec/bb.js": "portal:../../barretenberg/ts",
"@aztec/blob-lib": "workspace:^",
"@aztec/constants": "workspace:^",
"@aztec/ethereum": "workspace:^",
"@aztec/foundation": "workspace:^",
"@google-cloud/storage": "^7.15.0",
"lodash.chunk": "^4.2.0",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"lodash.times": "^4.3.2",
"msgpackr": "^1.11.2",
"pako": "^2.1.0",
"tslib": "^2.4.0",
"viem": "2.23.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.0",
"@types/lodash.chunk": "^4.2.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.omit": "^4.5.7",
"@types/lodash.times": "^4.3.9",
"@types/node": "^18.7.23",
"@types/pako": "^2.0.3",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"jest-mock-extended": "^4.0.0-beta1",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"files": [
"dest",
"src",
"!*.test.*",
"!src/scripts/*"
],
"types": "./dest/index.d.ts",
"engines": {
"node": ">=18"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.tsx?$": [
"@swc/jest",
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"transform": {
"decoratorVersion": "2022-03"
}
}
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
},
"testRegex": "./src/.*\\.test\\.(js|mjs|ts)$",
"rootDir": "./src",
"reporters": [
"default"
],
"testTimeout": 120000,
"setupFiles": [
"../../foundation/src/jest/setup.mjs"
]
}
}