cyberia-token/package.json

{
  "name": "cyberia-token",
  "version": "1.0.0",
  "description": "Cyberia (CAP) - An upgradeable governance-friendly ERC-20 token with holder incentives for Aragon DAO",
  "author": "Cyberia DAO",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cyberia-to/cyberia-token.git"
  },
  "homepage": "https://github.com/cyberia-to/cyberia-token#readme",
  "bugs": {
    "url": "https://github.com/cyberia-to/cyberia-token/issues"
  },
  "keywords": [
    "erc20",
    "token",
    "cyberia",
    "cap",
    "governance",
    "dao",
    "aragon",
    "defi",
    "ethereum",
    "solidity",
    "upgradeable",
    "uups",
    "voting",
    "treasury"
  ],
  "private": false,
  "scripts": {
    "build": "hardhat compile",
    "clean": "hardhat clean && rm -rf cache artifacts typechain-types",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "lint:sol": "solhint 'contracts/**/*.sol'",
    "lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
    "format": "prettier --write \"**/*.{ts,js,json,sol,md}\"",
    "format:check": "prettier --check \"**/*.{ts,js,json,sol,md}\"",
    "test": "hardhat test",
    "test:unit": "hardhat test test/unit/*.test.ts",
    "test:security": "hardhat test test/security/*.test.ts",
    "test:integration": "hardhat test test/integration/*.test.ts",
    "test:coverage": "hardhat coverage",
    "test:gas": "REPORT_GAS=true hardhat test",
    "test:foundry": "forge test",
    "test:foundry:fuzz": "forge test --match-path test/foundry/CAPToken.fuzz.t.sol",
    "test:foundry:invariant": "forge test --match-path test/foundry/CAPToken.invariant.t.sol",
    "test:foundry:stateful": "forge test --match-path test/foundry/CAPToken.stateful.t.sol",
    "test:foundry:coverage": "forge coverage",
    "test:foundry:gas": "forge test --gas-report",
    "test:all": "npm run test && npm run test:foundry",
    "test:ci": "npm run lint && npm run lint:sol && npm run test:all",
    "size": "hardhat size-contracts",
    "node": "hardhat node",
    "deploy:sepolia": "hardhat run --network sepolia scripts/deploy.ts",
    "deploy:mainnet": "hardhat run --network mainnet scripts/deploy.ts",
    "upgrade:sepolia": "hardhat run --network sepolia scripts/upgrade.ts",
    "upgrade:mainnet": "hardhat run --network mainnet scripts/upgrade.ts",
    "configure:sepolia": "hardhat run --network sepolia scripts/configure.ts",
    "verify:sepolia": "hardhat run --network sepolia scripts/verify.ts",
    "verify:mainnet": "hardhat run --network mainnet scripts/verify.ts",
    "validate:deployment": "hardhat run scripts/validate-deployment.ts",
    "validate:zodiac": "ts-node scripts/validate-zodiac-config.ts",
    "update-readme": "ts-node scripts/update-readme-deployment.ts",
    "deploy": "npm run deploy:sepolia",
    "prepare": "husky",
    "console:sepolia": "hardhat console --network sepolia",
    "dao:transfer-governance": "hardhat run --network sepolia scripts/dao/transfer-governance.ts",
    "dao:delegate": "hardhat run --network sepolia scripts/dao/delegate-tokens.ts",
    "dao:info": "hardhat run --network sepolia scripts/dao/osx/get-dao-info.ts",
    "oft:deploy:adapter": "hardhat run scripts/layerzero/deploy-oft-adapter.ts",
    "oft:deploy:oft": "hardhat run scripts/layerzero/deploy-oft.ts",
    "oft:configure:peers": "hardhat run scripts/layerzero/configure-oft-peers.ts",
    "oft:check-balance": "hardhat run scripts/check-oft-balance.ts",
    "oft:check-peers": "hardhat run scripts/check-peers.ts",
    "oft:test-bridge": "hardhat run scripts/layerzero/test-bridge.ts",
    "postinstall": "bash scripts/setup.sh",
    "prepare": "husky"
  },
  "engines": {
    "node": ">=20.0.0",
    "npm": ">=10.0.0"
  },
  "volta": {
    "node": "20.19.5",
    "npm": "10.8.2"
  },
  "devDependencies": {
    "@aragon/osx": "^1.4.0",
    "@layerzerolabs/lz-evm-messagelib-v2": "^3.0.140",
    "@layerzerolabs/lz-evm-protocol-v2": "^3.0.140",
    "@layerzerolabs/lz-v2-utilities": "^3.0.141",
    "@layerzerolabs/oapp-evm": "^0.3.2",
    "@layerzerolabs/oft-evm": "^3.2.1",
    "@nomiclabs/hardhat-waffle": "^2.0.6",
    "@nomiclabs/hardhat-ethers": "^2.2.3",
    "@nomicfoundation/hardhat-network-helpers": "^1.1.0",
    "ethereum-waffle": "^4.0.10",
    "@openzeppelin/contracts": "^5.4.0",
    "@openzeppelin/contracts-upgradeable": "^5.4.0",
    "@openzeppelin/hardhat-upgrades": "^1.28.0",
    "@typechain/ethers-v5": "^11.1.2",
    "@typechain/hardhat": "^7.0.0",
    "@types/chai": "^4.3.20",
    "@types/mocha": "^10.0.10",
    "@types/node": "^20.14.12",
    "@typescript-eslint/eslint-plugin": "^8.46.1",
    "@typescript-eslint/parser": "^8.46.1",
    "chai": "^4.5.0",
    "dotenv": "^16.4.5",
    "eslint": "^9.37.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "ethers": "^5.7.2",
    "hardhat": "^2.17.0",
    "hardhat-abi-exporter": "^2.11.0",
    "hardhat-contract-sizer": "^2.10.1",
    "hardhat-gas-reporter": "^2.3.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.4",
    "prettier": "^3.6.2",
    "prettier-plugin-solidity": "^2.1.0",
    "solhint": "^6.0.1",
    "solidity-coverage": "^0.8.16",
    "solidity-docgen": "^0.6.0-beta.36",
    "ts-node": "^10.9.2",
    "typechain": "^8.2.0",
    "typescript": "^5.6.2"
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix --max-warnings=10",
      "prettier --write"
    ],
    "*.sol": [
      "solhint --fix",
      "prettier --write"
    ],
    "*.{json,md}": [
      "prettier --write"
    ]
  },
  "license": "MIT"
}

Synonyms

bostrom-mcp/package.json
cyb/package.json
bostrom.network/package.json
pussy-ts/package.json
cybertensor-developer-docs/package.json
soft3.js/package.json
cyber-ts/package.json
pussy-landing/package.json
pussy.meme/package.json
cyber-ts/packages/cyber-ts/package.json
radio/iroh-ffi/iroh-js/package.json
cw-cyber/contracts/cw-cyber-gift/testdata/generate_test_data/package.json

Neighbours