-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 3.67 KB
/
package.json
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
{
"name": "root",
"private": true,
"version": "0.9.0-alpha.0",
"description": "A light weight blazing fast, modular ERC-4337 TypeScript bundler built with the power of declarative functional programming.",
"author": {
"name": "Transeptor Labs",
"email": "[email protected]",
"url": "https://transeptorlabs.io"
},
"license": "GNU",
"homepage": "https://github.com/transeptorlabs/transeptor-bundler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/transeptorlabs/transeptor-bundler.git"
},
"bugs": {
"url": "https://github.com/transeptorlabs/transeptor-bundler/issues"
},
"type": "module",
"exports": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"ls-cmd": "node --import ./register-hook.js ./src/index.ts --help",
"build": "npx tsc -p ./tsconfig.json && cp ./src/sim/tracer.js dist/sim",
"build:contracts": "cd contracts && forge build",
"dev": "nodemon --exec node --import ./register-hook.js ./src/index.ts --httpApi web3,eth,debug --txMode base | pino-pretty",
"dev:native-tracer": "nodemon --exec node --import ./register-hook.js ./src/index.ts --httpApi web3,eth,debug --txMode base --tracerRpcUrl http://localhost:8888 | pino-pretty",
"dev:unsafe": "nodemon --exec node --import ./register-hook.js ./src/index.ts --httpApi web3,eth,debug --txMode base --unsafe | pino-pretty",
"dev:metrics": "nodemon --exec node --import ./register-hook.js ./src/index.ts --httpApi web3,eth,debug --metrics --txMode base | pino-pretty",
"start": "node --import ./register-hook.js ./src/index.ts --httpApi web3,eth,debug --txMode base | pino-pretty",
"start:prod": "yarn build && node dist/index.js --httpApi web3,eth,debug --txMode base | pino-pretty",
"test": "vitest run --config ./vitest.config.ts",
"test:dev": "vitest --config ./vitest.config.ts",
"lint": "eslint . --ext ts",
"lint:fix": "yarn lint --fix",
"send-op": "node --import ./register-hook.js ./e2e/send-userop.e2e.ts | pino-pretty",
"test:mempool-race": "node --import ./register-hook.js ./e2e/data-race-test.ts",
"///cK": "________________________DOCKER CONTAINERS______________________________",
"local-eth": "./eth-node",
"build:image": "docker build -t bundler-typescript:v-local .",
"start:image": "docker-compose up -d bundler-typescript-local",
"stop:image": "docker-compose down",
"influxdb": "docker-compose up influxdb",
"grafana": "docker-compose up grafana"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^12.0.2",
"@influxdata/influxdb-client": "1.33.2",
"@libp2p/mplex": "^8.0.4",
"@libp2p/tcp": "^7.0.3",
"@multiformats/multiaddr": "^12.1.5",
"async-mutex": "0.4.0",
"commander": "10.0.1",
"cors": "^2.8.5",
"dotenv": "16.0.3",
"ethers": "^6.13.4",
"express": "^4.21.2",
"helmet": "^7.1.0",
"libp2p": "^0.45.9",
"os-utils": "0.0.14",
"pino": "^8.14.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "18.16.3",
"@types/os-utils": "^0.0.4",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.0",
"pino-pretty": "^10.0.0",
"prettier": "^3.3.3",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.11.1"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,json",
"ignore": []
}
}