@venusprotocol/governance-contracts
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "@venusprotocol/governance-contracts", | ||
"description": "", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"author": "", | ||
"files": [ | ||
"/contracts" | ||
], | ||
"keywords": [ | ||
"blockchain", | ||
"ethers", | ||
"ethereum", | ||
"hardhat", | ||
"smart-contracts", | ||
"solidity", | ||
"template", | ||
"typescript", | ||
"typechain" | ||
], | ||
"packageManager": "yarn@3.2.1", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"compile": "hardhat compile", | ||
"test": "hardhat test", | ||
"build": "rm -rf dist && tsc --declaration && hardhat compile && cp -r ./{package.json,yarn.lock,artifacts,contracts} dist/", | ||
"publish:dist": "yarn build && cd dist && yarn publish --access public", | ||
"lint": "yarn lint:ts && yarn lint:sol && yarn prettier:check", | ||
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .", | ||
"lint:sol": "solhint \"contracts/**/*.sol\"", | ||
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"", | ||
"prettier": "prettier --write \"**/*.{js,json,md,ts,yaml,yml,sol}\"", | ||
"prettier:check": "prettier --check \"**/*.{js,json,md,ts,yaml,yml,sol}\"", | ||
"docgen": "hardhat docgen" | ||
}, | ||
"devDependencies": { | ||
@@ -68,34 +99,3 @@ "@commitlint/cli": "^17.4.4", | ||
"typescript": "^4.9.3" | ||
}, | ||
"files": [ | ||
"/contracts" | ||
], | ||
"keywords": [ | ||
"blockchain", | ||
"ethers", | ||
"ethereum", | ||
"hardhat", | ||
"smart-contracts", | ||
"solidity", | ||
"template", | ||
"typescript", | ||
"typechain" | ||
], | ||
"packageManager": "yarn@3.2.1", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"compile": "hardhat compile", | ||
"test": "hardhat test", | ||
"build": "rm -rf dist && tsc --declaration && hardhat compile && cp -r ./{package.json,yarn.lock,artifacts,contracts} dist/", | ||
"publish:dist": "yarn build && cd dist && yarn publish --access public", | ||
"lint": "yarn lint:ts && yarn lint:sol && yarn prettier:check", | ||
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .", | ||
"lint:sol": "solhint \"contracts/**/*.sol\"", | ||
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"", | ||
"prettier": "prettier --config ./.prettierrc.yaml --write \"**/*.{js,json,md,ts,yaml,yml,sol}\"", | ||
"prettier:check": "prettier --check --config ./.prettierrc.yaml \"**/*.{js,json,md,ts,yaml,yml,sol}\"", | ||
"docgen": "hardhat docgen" | ||
} | ||
} |
63296