-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.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
{
"name": "axis-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"npm": "use-pnpm",
"yarn": "use-pnpm"
},
"scripts": {
"build:ecies-cli": "cd crates/ecies-cli && cargo build && cd ../..",
"build": "forge build && pnpm run build:ecies-cli",
"deploy": "./script/deploy/deploy.sh",
"fmt:check": "forge fmt --check && prettier . --check",
"fmt": "forge fmt && prettier . --write",
"lint:check": "pnpm run fmt:check && pnpm run solhint:check",
"lint": "pnpm run fmt && pnpm run solhint",
"postinstall": "./script/install.sh",
"publish": "./script/publish.sh",
"salts": "./script/salts/write_salt.sh",
"size": "forge clean && forge build --sizes --skip test --skip '*/Mock*.sol'",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"solhint": "solhint --fix --config ./.solhint.json 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"test": "forge test --nmt largeNumberOf -vvv"
},
"keywords": [],
"author": "",
"license": "BSL-1.1",
"dependencies": {
"solhint-community": "3.7.0"
},
"devDependencies": {
"prettier": "3.3.3"
}
}