@tevm/whatsabi
Version:
Utilities around whatsabi
78 lines • 2.19 kB
JSON
{
"name": "@tevm/whatsabi",
"version": "1.0.0-next.146",
"private": false,
"description": "Utilities around whatsabi",
"keywords": [
"solidity",
"whatsabi",
"typescript",
"web3",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/evmts/tevm-monorepo.git",
"directory": "bundler-packages/whatsabi"
},
"license": "MIT",
"contributors": [
"Will Cory <willcory10@gmail.com>"
],
"sideEffects": false,
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./types/src/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/src/index.d.ts",
"files": [
"dist",
"types",
"src"
],
"dependencies": {
"@shazow/whatsabi": "^0.22.2",
"@tevm/config": "^1.0.0-next.146",
"@tevm/utils": "^1.0.0-next.146"
},
"devDependencies": {
"@tevm/tsconfig": "^1.0.0-next.142",
"@tevm/tsupconfig": "^1.0.0-next.146"
},
"peerDependencies": {
"viem": "^2.30.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"//lint:package": "bunx publint --strict && attw --pack",
"//test": "vitest --coverage",
"//test:coverage": "vitest run --coverage",
"//test:run": "vitest run",
"//test:ui": "vitest --ui",
"all": "pnpm i && bun run build && bun run lint && bun run lint:check && bun run format:check && bun run format && bun run test:coverage && bun run generate:docs",
"build": "nx run-many --targets=build:dist,build:types --projects=@tevm/whatsabi ",
"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"
}
}