UNPKG

viem-tracer

Version:

[![npm package][npm-img]][npm-url] [![Build Status][build-img]][build-url] [![Downloads][downloads-img]][downloads-url] [![Issues][issues-img]][issues-url] [![Commitizen Friendly][commitizen-img]][commitizen-url] [![Semantic Release][semantic-release-img]

118 lines (117 loc) 2.6 kB
{ "name": "viem-tracer", "version": "1.8.0", "author": { "name": "Romain (Rubilmax) Milon", "email": "rmilon@gmail.com", "url": "https://github.com/rubilmax" }, "license": "MIT", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib" ], "packageManager": "yarn@1.22.22", "scripts": { "prepare": "husky", "lint": "biome check", "build": "tsc --build tsconfig.build.json", "test": "dotenv -- vitest" }, "repository": { "type": "git", "url": "git+https://github.com/Rubilmax/viem-tracer.git" }, "bugs": { "url": "https://github.com/Rubilmax/viem-tracer/issues" }, "keywords": [ "viem", "trace", "hardhat", "anvil", "test", "cheat", "rpc", "erc20" ], "dependencies": { "colors": "^1.4.0" }, "peerDependencies": { "viem": "^2.21.0" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.6.0", "@commitlint/config-conventional": "^19.6.0", "@types/lodash.kebabcase": "^4.1.9", "@types/node": "^22.10.2", "@vitest/coverage-v8": "^2.1.8", "conventional-changelog-conventionalcommits": "^8.0.0", "dotenv-cli": "^7.4.4", "husky": "^9.1.7", "lint-staged": "^15.2.11", "lodash.kebabcase": "^4.1.1", "semantic-release": "^24.2.0", "typescript": "^5.7.2", "viem": "^2.29.0", "viem-deal": "^2.0.4", "vitest": "^2.1.8" }, "lint-staged": { "*.ts": "yarn biome check" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release": { "branches": [ "main", "next" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "type": "build", "scope": "deps", "release": "patch" } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "build", "section": "Dependencies and Other Build Updates", "hidden": false } ] } } ], "@semantic-release/npm", "@semantic-release/github" ] } }