-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 2.18 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
{
"name": "@mitosis/protocol",
"version": "0.0.1",
"description": "Mitosis is an Ecosystem-Owned Liquidity (EOL) blockchain that facilitates newly created modular blockchains to capture TVL and attract users through the Mitosis governance process.",
"main": "index.js",
"repository": "https://github.com/mitosis-org/protocol",
"author": "byeongsu-hong <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky",
"build": "forge build",
"abi": "rm -rf abis && mkdir -p abis && forge build --force --skip script --skip test --extra-output-files abi && find ./out -type f | grep '.abi.json' | xargs -I % cp % abis",
"abi:type": "yarn abi && ts-node ./tools/generate-abi-types.ts && yarn prettier",
"lint": "forge fmt && yarn prettier && yarn format-json && yarn sort-imports",
"lint:check": "forge fmt --check && yarn prettier:check && yarn format-json:check && yarn sort-imports:check",
"prettier": "prettier . --write --ignore-path .prettierignore",
"prettier:check": "prettier . --check --ignore-path .prettierignore",
"minify": "ts-node ./tools/minify.ts",
"format-json": "ts-node ./tools/format-json.ts -i './{script,src,test,addresses}/**/*.json'",
"format-json:check": "ts-node ./tools/format-json.ts -i './{script,src,test,addresses}/**/*.json' -c",
"sort-imports": "ts-node ./tools/sort-imports.ts -i './{script,src,test}/**/*.sol'",
"sort-imports:check": "ts-node ./tools/sort-imports.ts -i './{script,src,test}/**/*.sol' -c"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-plugin-sort-json": "^4.0.0",
"solc": "^0.8.27",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"commander": "^12.1.0",
"glob": "^11.0.0",
"hpl-v5": "https://github.com/mitosis-org/hyperlane-core#568df242092a8e12ef525b176bf50fab1f19316f",
"toml": "^3.0.0",
"viem": "^2.18.7"
},
"packageManager": "[email protected]"
}