@witnet/wrapped-wit
Version:
Wrapped/WIT Solidity contracts and CLI tools
63 lines • 1.93 kB
JSON
{
"name": "@witnet/wrapped-wit",
"version": "1.0.4",
"author": "Witnet Foundation <info@witnet.foundation>",
"description": "Wrapped/WIT Solidity contracts and CLI tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-wrapped-wit"
},
"type": "commonjs",
"exports": "./src/index.js",
"bin": {
"witwrap": "src/bin/cli/index.js",
"wrapped-wit-unwrapper": "src/bin/unwrapper.js"
},
"files": [
"artifacts",
"contracts",
"src"
],
"keywords": [
"ethereum",
"witnet",
"wit/oracle",
"$WIT",
"token",
"ERC-20"
],
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@openzeppelin/community-contracts": "git+https://github.com/OpenZeppelin/openzeppelin-community-contracts.git#master",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"hardhat": "^2.26.1",
"solhint": "^5.0.3"
},
"dependencies": {
"@witnet/ethers": "^1.0.2",
"@witnet/sdk": "^1.0.8",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"ethrpc-gateway": "^2.2.6",
"inquirer": "^8.0.0",
"lodash.merge": "^4.6.2",
"moment": "^2.30.1",
"witnet-solidity-bridge": "~2.1.11"
},
"scripts": {
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js",
"fmt": "solhint --max-warnings 30 \"contracts/**/*.sol\" && eslint --ext .js,.ts,.cjs . --ignore-path .gitignore",
"fmt!": "solhint --max-warnings 30 \"contracts/**/*.sol\" --fix && eslint --ext .js,.ts,.cjs . --fix --ignore-path .gitignore",
"start": "node ./src/bin/unwrapper.js",
"test": "node ./src/bin/cli/index.js",
"verify": "npx hardhat verify"
}
}