Skip to content

Instantly share code, notes, and snippets.

@nk4dev
Created October 23, 2025 13:05
Show Gist options
  • Select an option

  • Save nk4dev/c687274974d88bb021e4dc01ea761c3c to your computer and use it in GitHub Desktop.

Select an option

Save nk4dev/c687274974d88bb021e4dc01ea761c3c to your computer and use it in GitHub Desktop.
{
"name": "@vx3/vx",
"version": "0.0.17",
"description": "A CLI tool for smart contracts",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"web3",
"vx3",
"cli",
"smart-contracts"
],
"bin": {
"vx3": "./dist/cli.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "https://github.com/nk4dev/vx",
"scripts": {
"build": "rimraf dist && tsc",
"clean": "rimraf dist",
"dev": "node dist/cli.js",
"start": "npm run build && npx vx serve --debug",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"hh": "hardhat",
"hh:compile": "hardhat compile",
"hh:test": "hardhat test",
"hh:node": "hardhat node",
"hh:deploy": "hardhat run scripts/deploy.ts --network localhost",
"@types/node": "^22.16.5", <= Y delete "dependencies"???????"
"ethers": "^6.15.0",
"minimatch": "^10.0.3",
"prettier": "^3.5.3",
"solc": "^0.8.30"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@types/minimatch": "^5.1.2",
"@types/supertest": "^6.0.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.2.0",
"hardhat": "^2.22.0",
"jest": "^30.0.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment