dop-stick
Version:
Source control tooling for versionable-upgradeable smart contracts
94 lines (93 loc) • 2.17 kB
JSON
{
"name": "dop-stick",
"version": "0.0.3",
"license": "MIT",
"description": "Source control tooling for versionable-upgradeable smart contracts",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"bin": {
"dop-stick": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^1.7.7",
"commander": "^9.0.0",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"hardhat": "^2.14.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"clean": "rimraf dist",
"rebuild": "yarn clean && yarn build",
"test": "jest",
"prepublishOnly": "yarn build",
"preversion": "yarn test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"ethereum",
"diamond",
"eip2535",
"diamond-pattern",
"diamond-standard",
"smart-contracts",
"upgradeable-contracts",
"versionable-contracts",
"solidity",
"blockchain",
"web3",
"dapp",
"hyperledger-besu",
"enterprise-ethereum",
"contract-versioning",
"contract-management",
"contract-deployment",
"contract-upgrade",
"parallel-deployment",
"multi-facet",
"faceted-diamond",
"diamond-proxy",
"proxy-pattern",
"contract-governance",
"smart-contract-tools",
"ethereum-development",
"blockchain-development",
"defi",
"ethereum-tools",
"hardhat-plugin",
"contract-automation",
"contract-migration",
"contract-versioning-control",
"diamond-cuts",
"diamond-loupe",
"diamond-storage"
],
"author": "Hey Believe!",
"repository": {
"type": "git",
"url": "git+https://github.com/Hey-Believe/dop-stick.git"
},
"bugs": {
"url": "https://github.com/Hey-Believe/dop-stick/issues"
},
"homepage": "https://github.com/Hey-Believe/dop-stick/blob/main/README.md",
"engines": {
"node": ">=14.0.0"
}
}