UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

98 lines 2.94 kB
{ "name": "@tevm/actions", "version": "1.0.0-next.149", "private": false, "description": "A typesafe library for writing forge scripts in typescript", "keywords": [ "solidity", "forge", "foundry", "sol", "typescript", "web3", "blockchain" ], "repository": { "type": "git", "url": "git+https://github.com/evmts/tevm-monorepo.git", "directory": "packages/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": { "@tevm/block": "^1.0.0-next.148", "@tevm/address": "^1.0.0-next.148", "@tevm/blockchain": "^1.0.0-next.148", "@tevm/common": "^1.0.0-next.148", "@tevm/contract": "^1.0.0-next.149", "@tevm/errors": "^1.0.0-next.148", "@tevm/evm": "^1.0.0-next.148", "@tevm/jsonrpc": "^1.0.0-next.148", "@tevm/node": "^1.0.0-next.148", "@tevm/receipt-manager": "^1.0.0-next.148", "@tevm/state": "^1.0.0-next.148", "@tevm/tx": "^1.0.0-next.148", "@tevm/txpool": "^1.0.0-next.148", "@tevm/utils": "^1.0.0-next.148", "@tevm/vm": "^1.0.0-next.148" }, "devDependencies": { "abitype": "^1.1.1", "@tevm/decorators": "^1.0.0-next.148", "@tevm/test-utils": "^1.0.0-next.148", "@tevm/tsconfig": "^1.0.0-next.142", "@tevm/tsupconfig": "^1.0.0-next.148" }, "peerDependencies": { "viem": "^2.37.9", "zod": "^4.1.11" }, "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 && rm -rf types", "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 && pnpm pack --pack-destination /tmp && attw /tmp/tevm-actions-*.tgz && rm /tmp/tevm-actions-*.tgz", "package:up": "pnpm up --latest", "test": "vitest --watch", "test:coverage": "vitest --coverage --run", "test:run": "vitest run", "typecheck": "tsc --noEmit" } }