The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/package.json

64 lines
1.9 KiB

3 years ago
{
"name": "@hyperlane-xyz/hyperlane-token",
"description": "A template for interchain ERC20 and ERC721 tokens using Hyperlane",
"version": "1.0.0-beta5",
3 years ago
"dependencies": {
"@hyperlane-xyz/core": "1.0.0-beta5",
"@hyperlane-xyz/sdk": "1.0.0-beta5",
"@hyperlane-xyz/utils": "1.0.0-beta5",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"ethers": "^5.7.2"
3 years ago
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typechain/ethers-v5": "10.0.0",
"@typechain/hardhat": "^6.0.0",
3 years ago
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
3 years ago
"chai": "^4.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.8.4",
3 years ago
"hardhat-gas-reporter": "^1.0.7",
"prettier": "^2.4.1",
3 years ago
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.14",
"ts-node": "^10.8.0",
"typechain": "8.0.0",
"typescript": "^4.7.2"
},
"files": [
"/dist",
"/contracts"
],
"homepage": "https://www.hyperlane.xyz",
"keywords": [
"Hyperlane",
"Solidity",
"Token"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"packageManager": "yarn@3.2.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperlane-xyz/hyperlane-token"
},
"scripts": {
"clean": "hardhat clean && rm -rf dist cache src/types",
"build:dev": "hardhat compile && tsc --project ./tsconfig.json",
"build:publish": "hardhat compile && tsc --project ./tsconfig.publish.json",
"coverage": "hardhat coverage",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ./contracts ./test",
"test": "hardhat test ./test/*.test.ts"
},
"types": "dist/index.d.ts"
3 years ago
}