@tevm/ts-plugin
Version:
A typescript plugin for tevm
85 lines • 2.29 kB
JSON
{
"name": "@tevm/ts-plugin",
"version": "1.0.0-next.146",
"private": false,
"sideEffects": false,
"description": "A typescript plugin for tevm",
"keywords": [
"typescript",
"plugin",
"solidity",
"sol",
"tevm"
],
"repository": {
"type": "git",
"url": "https://github.com/evmts/tevm-monorepo.git",
"directory": "lsp/ts-plugin"
},
"license": "MIT",
"contributors": [
"Will Cory <willcory10@gmail.com>"
],
"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",
"bin": {
"tevm-gen": "./dist/bin/tevm-gen.js"
},
"files": [
"dist",
"src",
"types"
],
"dependencies": {
"@types/minimatch": "^5.1.2",
"effect": "3.15.4",
"glob": "^11.0.2",
"minimatch": "^10.0.1",
"solc": "0.8.30",
"solidity-ast": "^0.4.60",
"@tevm/base-bundler": "^1.0.0-next.146",
"@tevm/bundler-cache": "^1.0.0-next.146"
},
"devDependencies": {
"typescript": "^5.8.3",
"@tevm/config": "^1.0.0-next.146",
"@tevm/contract": "^1.0.0-next.146",
"@tevm/tsupconfig": "^1.0.0-next.146"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"scripts": {
"build": "nx run-many --targets=build:dist,build:types --projects=@tevm/ts-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",
"dev": "TSS_DEBUG_BRK=9559 code ../../examples/forge-foundry",
"format": "biome format . --write",
"format:check": "biome format .",
"lint:deps": "bunx depcheck",
"// lint:package": "bunx publint --strict && attw --pack",
"generate:docs": "typedoc",
"lint": "biome check . --write --unsafe",
"lint:check": "biome check . --verbose",
"typecheck": "tsc --noEmit",
"test": "vitest --coverage",
"test:coverage": "vitest run --coverage",
"test:run": "vitest --run"
}
}