-
Notifications
You must be signed in to change notification settings - Fork 615
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.05 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
{
"name": "@aztec/blob-lib",
"version": "0.1.0",
"type": "module",
"exports": {
".": "./dest/index.js",
"./types": "./dest/types.js",
"./testing": "./dest/testing.js"
},
"typedocOptions": {
"entryPoints": [
"./src/index.ts"
],
"name": "Blob Lib",
"tsconfig": "./tsconfig.json"
},
"scripts": {
"build": "yarn clean && tsc -b",
"build:dev": "tsc -b --watch",
"clean": "rm -rf ./dest .tsbuildinfo",
"start:dev": "tsc-watch -p tsconfig.json --onSuccess 'yarn start'",
"start": "node ./dest/index.js",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
},
"inherits": [
"../package.common.json"
],
"dependencies": {
"@aztec/constants": "workspace:^",
"@aztec/foundation": "workspace:^",
"c-kzg": "4.1.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@jest/globals": "^30.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.17",
"get-port": "^7.1.0",
"jest": "^30.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"files": [
"dest",
"src",
"!*.test.*"
],
"types": "./dest/index.d.ts",
"jest": {
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
},
"testRegex": "./src/.*\\.test\\.(js|mjs|ts)$",
"rootDir": "./src",
"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"
]
},
"engines": {
"node": ">=20.10"
}
}