-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "executooor",
"version": "1.0.0",
"author": {
"name": "Romain (Rubilmax) Milon",
"email": "[email protected]",
"url": "https://github.com/rubilmax"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"web"
],
"scripts": {
"prepare": "husky",
"lint": "biome check",
"publish": "lerna publish from-git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubilmax/executooor.git"
},
"bugs": {
"url": "https://github.com/Rubilmax/executooor/issues"
},
"keywords": [
"mev",
"ethers",
"viem",
"executor",
"multicall",
"multidelegatecall",
"evm",
"smart contract"
],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@lerna-lite/cli": "3.5.1",
"@lerna-lite/publish": "3.8.0",
"@lerna-lite/version": "^3.7.1",
"@types/node": "^22.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.sol": "forge fmt",
"*.ts": "yarn biome check"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}