UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

97 lines 2.78 kB
{ "name": "@tevm/actions", "version": "1.0.0-next.147", "private": false, "description": "A typesafe library for writing forge scripts in typescript", "keywords": [ "solidity", "forge", "foundry", "sol", "typescript", "web3", "blockchain" ], "repository": { "type": "git", "url": "https://github.com/evmts/tevm-monorepo.git", "directory": "actions" }, "license": "MIT", "contributors": [ "Will Cory <willcory10@gmail.com>" ], "sideEffects": false, "type": "module", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./types/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "src", "!src/**/*.spec.ts", "types" ], "dependencies": { "zod": "^3.25.30", "@tevm/address": "^1.0.0-next.146", "@tevm/block": "^1.0.0-next.146", "@tevm/blockchain": "^1.0.0-next.146", "@tevm/common": "^1.0.0-next.146", "@tevm/contract": "^1.0.0-next.146", "@tevm/errors": "^1.0.0-next.146", "@tevm/evm": "^1.0.0-next.146", "@tevm/jsonrpc": "^1.0.0-next.146", "@tevm/node": "^1.0.0-next.147", "@tevm/receipt-manager": "^1.0.0-next.146", "@tevm/state": "^1.0.0-next.146", "@tevm/tx": "^1.0.0-next.146", "@tevm/txpool": "^1.0.0-next.147", "@tevm/utils": "^1.0.0-next.146", "@tevm/vm": "^1.0.0-next.147" }, "devDependencies": { "abitype": "^1.0.8", "@tevm/test-utils": "^1.0.0-next.146", "@tevm/tsconfig": "^1.0.0-next.142", "@tevm/tsupconfig": "^1.0.0-next.146" }, "peerDependencies": { "viem": "^2.30.1" }, "publishConfig": { "access": "public" }, "scripts": { "all": "pnpm i && bun run build && bun lint && bun format && bun test:run && bun generate:docs", "build": "nx run-many --targets=build:dist,build:types --projects=@tevm/actions", "build:dist": "tsup", "build:types": "tsup --dts-only && tsc --emitDeclarationOnly --declaration", "clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache", "format": "biome format . --write", "format:check": "biome format .", "generate:docs": "bun run typedoc", "lint": "biome check . --write --unsafe", "lint:check": "biome check . --verbose", "lint:deps": "bunx depcheck", "lint:package": "bunx publint --strict && attw --pack", "package:up": "pnpm up --latest", "test": "vitest --watch", "test:coverage": "vitest --coverage --run", "test:run": "vitest", "typecheck": "tsc --noEmit" } }