UNPKG

@tevm/bun-plugin

Version:
80 lines 2.22 kB
{ "name": "@tevm/bun-plugin", "version": "1.0.0-next.148", "private": false, "description": "A bun plugin for tevm", "keywords": [ "bun", "plugin", "solidity", "sol", "tevm" ], "repository": { "type": "git", "url": "git+https://github.com/evmts/tevm-monorepo.git", "directory": "bundler-packages/bun" }, "license": "MIT", "contributors": [ "Will Cory <willcory10@gmail.com>" ], "sideEffects": false, "type": "module", "exports": { ".": { "import": { "types": "./types/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./package.json": "./package.json" }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "src", "types" ], "dependencies": { "effect": "3.18.1", "solc": "0.8.30", "@tevm/base-bundler": "^1.0.0-next.148", "@tevm/bundler-cache": "^1.0.0-next.148", "@tevm/config": "^1.0.0-next.148", "@tevm/solc": "^1.0.0-next.148" }, "devDependencies": { "bun-types": "^1.2.23", "@tevm/contract": "^1.0.0-next.148", "@tevm/tsconfig": "^1.0.0-next.142", "@tevm/tsupconfig": "^1.0.0-next.148" }, "publishConfig": { "access": "public" }, "scripts": { "all": "bun run build && bun run lint && bun run format && bun run generate:docs && bun run test:coverage", "build": "nx run-many --targets=build:dist,build:types --projects=@tevm/bun-plugin ", "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": "typedoc", "lint": "biome check . --write --unsafe", "lint:check": "biome check . --verbose", "lint:deps": "bunx depcheck", "lint:package": "bunx publint --strict && attw --pack", "test": "vitest --coverage", "test:coverage": "vitest run --coverage", "test:run": "vitest run", "test:ui": "vitest --ui" } }