32 lines
870 B
JSON
32 lines
870 B
JSON
{
|
|
"name": "@status-im/status-network-token-v2",
|
|
"description": "Status Network Token V2",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "status-im",
|
|
"url": "https://github.com/status-im"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.0",
|
|
"solhint-community": "^3.6.0"
|
|
},
|
|
"keywords": [
|
|
"blockchain",
|
|
"ethereum",
|
|
"forge",
|
|
"foundry",
|
|
"smart-contracts",
|
|
"solidity",
|
|
"template"
|
|
],
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf cache out",
|
|
"lint": "pnpm lint:sol && pnpm prettier:check",
|
|
"verify": "certoraRun certora/certora.conf",
|
|
"lint:sol": "forge fmt --check && pnpm solhint {script,src,test,certora}/**/*.sol",
|
|
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
|
|
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore"
|
|
}
|
|
}
|