@pimlico/alto 0.0.0-staging.20240606T102147 → 0.0.0-staging.20240606T103333
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +70 -69
package/package.json
CHANGED
|
@@ -1,72 +1,73 @@
|
|
|
1
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
|
-
"scripts": {
|
|
27
|
-
"build": "tsc -p ./tsconfig.json && tsc-alias -p tsconfig.json",
|
|
28
|
-
"build:esm": "tsc -p ./tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
|
29
|
-
"dev": "nodemon --exec DOTENV_CONFIG_PATH=$(pwd)/../.env ts-node -r tsconfig-paths/register cli/alto.ts run",
|
|
30
|
-
"test": "test -d test && mocha test/**/*.test.ts --exit || echo 'No test folder found. Skipping tests.'",
|
|
31
|
-
"lint": "eslint src/**/*.ts",
|
|
32
|
-
"lint:fix": "eslint src/**/*.ts --fix"
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@fastify/websocket": "^10.0.1",
|
|
36
|
-
"@opentelemetry/api": "^1.7.0",
|
|
37
|
-
"@opentelemetry/core": "^1.19.0",
|
|
38
|
-
"@opentelemetry/exporter-trace-otlp-proto": "^0.46.0",
|
|
39
|
-
"@opentelemetry/instrumentation-fastify": "^0.32.5",
|
|
40
|
-
"@opentelemetry/instrumentation-http": "^0.46.0",
|
|
41
|
-
"@opentelemetry/instrumentation-ioredis": "^0.36.0",
|
|
42
|
-
"@opentelemetry/instrumentation-pino": "^0.34.4",
|
|
43
|
-
"@opentelemetry/sdk-node": "^0.46.0",
|
|
44
|
-
"@opentelemetry/sdk-trace-base": "^1.19.0",
|
|
45
|
-
"@opentelemetry/semantic-conventions": "^1.19.0",
|
|
46
|
-
"@sentry/node": "^7.83.0",
|
|
47
|
-
"@types/node": "^18.16.3",
|
|
48
|
-
"@types/ws": "^8.5.10",
|
|
49
|
-
"abitype": "^0.8.0",
|
|
50
|
-
"async-mutex": "^0.4.0",
|
|
51
|
-
"dotenv": "^16.0.3",
|
|
52
|
-
"fastify": "^4.25.2",
|
|
53
|
-
"fastify-cors": "3.0.3",
|
|
54
|
-
"opentelemetry-instrumentation-fetch-node": "^1.1.2",
|
|
55
|
-
"pino": "^8.15.0",
|
|
56
|
-
"pino-http": "^8.4.0",
|
|
57
|
-
"pino-pretty": "^10.0.0",
|
|
58
|
-
"prom-client": "^14.2.0",
|
|
59
|
-
"viem": "^2.9.5",
|
|
60
|
-
"yargs": "^17.7.1",
|
|
61
|
-
"zod": "^3.21.4",
|
|
62
|
-
"zod-validation-error": "^1.3.0"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@types/yargs": "^17.0.24",
|
|
66
|
-
"nodemon": "^3.0.3",
|
|
67
|
-
"ts-node": "^10.9.2",
|
|
68
|
-
"tsc-alias": "^1.8.8",
|
|
69
|
-
"tsconfig-paths": "^4.2.0",
|
|
70
|
-
"typescript": "^5.3.3"
|
|
2
|
+
"name": "@pimlico/alto",
|
|
3
|
+
"version": "0.0.0-staging.20240606T103333",
|
|
4
|
+
"description": "A performant and modular ERC-4337 Bundler written in Typescript",
|
|
5
|
+
"repository": "https://github.com/pimlicolabs/alto.git",
|
|
6
|
+
"author": "Pimlico",
|
|
7
|
+
"license": "GPL-3.0-or-later",
|
|
8
|
+
"main": "lib/index.js",
|
|
9
|
+
"types": "lib/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"esm/**/*.d.ts",
|
|
12
|
+
"esm/**/*.js",
|
|
13
|
+
"esm/**/*.js.map",
|
|
14
|
+
"lib/**/*.d.ts",
|
|
15
|
+
"lib/**/*.js",
|
|
16
|
+
"lib/**/*.js.map",
|
|
17
|
+
"*.d.ts",
|
|
18
|
+
"*.js"
|
|
19
|
+
],
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./esm/index.js",
|
|
23
|
+
"require": "./esm/index.js"
|
|
71
24
|
}
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsc -p ./tsconfig.json && tsc-alias -p tsconfig.json",
|
|
28
|
+
"build:esm": "tsc -p ./tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
|
29
|
+
"dev": "nodemon --exec DOTENV_CONFIG_PATH=$(pwd)/../.env ts-node -r tsconfig-paths/register cli/alto.ts run",
|
|
30
|
+
"test": "test -d test && mocha test/**/*.test.ts --exit || echo 'No test folder found. Skipping tests.'",
|
|
31
|
+
"lint": "eslint src/**/*.ts",
|
|
32
|
+
"lint:fix": "eslint src/**/*.ts --fix"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@fastify/websocket": "^10.0.1",
|
|
36
|
+
"@opentelemetry/api": "^1.7.0",
|
|
37
|
+
"@opentelemetry/core": "^1.19.0",
|
|
38
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.46.0",
|
|
39
|
+
"@opentelemetry/instrumentation-fastify": "^0.32.5",
|
|
40
|
+
"@opentelemetry/instrumentation-http": "^0.46.0",
|
|
41
|
+
"@opentelemetry/instrumentation-ioredis": "^0.36.0",
|
|
42
|
+
"@opentelemetry/instrumentation-pino": "^0.34.4",
|
|
43
|
+
"@opentelemetry/sdk-node": "^0.46.0",
|
|
44
|
+
"@opentelemetry/sdk-trace-base": "^1.19.0",
|
|
45
|
+
"@opentelemetry/semantic-conventions": "^1.19.0",
|
|
46
|
+
"@sentry/node": "^7.83.0",
|
|
47
|
+
"@types/node": "^18.16.3",
|
|
48
|
+
"@types/ws": "^8.5.10",
|
|
49
|
+
"abitype": "^0.8.0",
|
|
50
|
+
"async-mutex": "^0.4.0",
|
|
51
|
+
"dotenv": "^16.0.3",
|
|
52
|
+
"fastify": "^4.25.2",
|
|
53
|
+
"fastify-cors": "3.0.3",
|
|
54
|
+
"opentelemetry-instrumentation-fetch-node": "^1.1.2",
|
|
55
|
+
"pino": "^8.15.0",
|
|
56
|
+
"pino-http": "^8.4.0",
|
|
57
|
+
"pino-pretty": "^10.0.0",
|
|
58
|
+
"prom-client": "^14.2.0",
|
|
59
|
+
"viem": "^2.9.5",
|
|
60
|
+
"yargs": "^17.7.1",
|
|
61
|
+
"zod": "^3.21.4",
|
|
62
|
+
"zod-validation-error": "^1.3.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/yargs": "^17.0.24",
|
|
66
|
+
"nodemon": "^3.0.3",
|
|
67
|
+
"ts-node": "^10.9.2",
|
|
68
|
+
"tsc-alias": "^1.8.8",
|
|
69
|
+
"tsconfig-paths": "^4.2.0",
|
|
70
|
+
"typescript": "^5.3.3"
|
|
71
|
+
},
|
|
72
|
+
"type": "module"
|
|
72
73
|
}
|