forked from pimlicolabs/alto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "root",
"version": "0.0.1",
"description": "A performant and modular ERC-4337 Bundler written in Typescript",
"repository": "https://github.com/pimlicolabs/alto.git",
"author": "Pimlico",
"license": "GPL-3.0-or-later",
"scripts": {
"clean": "rm -rf ./packages/*/lib ./packages/*/*.tsbuildinfo",
"clean-modules": "rm -rf ./packages/*/node_modules node_modules",
"build": "pnpm -r run build",
"start": "node packages/cli/lib/alto.js run",
"test": "pnpm -r --workspace-concurrency 1 test --verbose=true",
"test:spec": "./test/run-spec-tests.sh",
"lint": "rome check ./",
"lint:fix": "rome check ./ --apply",
"format": "rome foramt ./ --write"
},
"devDependencies": {
"@swc/core": "^1.3.56",
"@types/mocha": "^10.0.1",
"earl": "^1.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rome": "^12.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
]
}