@matterlabs/hardhat-zksync-solc
Version:
Hardhat plugin to compile smart contracts for the ZKsync network
87 lines • 2.46 kB
JSON
{
"name": "@matterlabs/hardhat-zksync-solc",
"version": "1.5.0",
"description": "Hardhat plugin to compile smart contracts for the ZKsync network",
"repository": "github:matter-labs/hardhat-zksync",
"homepage": "https://github.com/matter-labs/hardhat-zksync/tree/main/packages/hardhat-zksync-solc",
"author": "Matter Labs",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"ZKsync"
],
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@nomiclabs/hardhat-docker": "^2.0.2",
"chalk": "^4.1.2",
"dockerode": "^4.0.2",
"fs-extra": "^11.2.0",
"chai": "^4.3.4",
"undici": "^6.18.2",
"debug": "^4.3.5",
"semver": "^7.6.2",
"lodash": "^4.17.21",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"proper-lockfile": "^4.1.2",
"@matterlabs/hardhat-zksync-telemetry": "^1.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/dockerode": "^3.3.29",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.17",
"@types/semver": "^7.5.8",
"@types/fs-extra": "^11.0.4",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/debug": "^4.1.12",
"@types/proper-lockfile": "^4.1.4",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"hardhat": "^2.22.5",
"mocha": "^10.4.0",
"prettier": "3.3.0",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.0",
"c8": "^8.0.1"
},
"peerDependencies": {
"hardhat": "^2.22.5"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"parser": "typescript",
"singleQuote": true,
"bracketSpacing": true
},
"scripts": {
"lint": "pnpm eslint",
"prettier:check": "pnpm prettier --check",
"lint:fix": "pnpm eslint --fix",
"fmt": "pnpm prettier --write",
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "prettier 'src/**/*.ts' 'test/**/*.ts'",
"test": "c8 mocha --recursive \"test/tests/**/*.ts\" --exit",
"build": "tsc --build .",
"clean": "rimraf dist"
}
}