{
	"name": "@evmts/unplugin",
	"version": "1.0.0-next.0",
	"private": false,
	"description": "Internal unplugin for Evmts",
	"keywords": [
		"solidity",
		"forge",
		"foundry",
		"sol",
		"typescript",
		"web3",
		"blockchain"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/evmts/evmts-monorepo.git",
		"directory": "bundler/unplugin"
	},
	"license": "MIT",
	"contributors": [
		"Will Cory <willcory10@gmail.com>"
	],
	"type": "module",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"import": "./src/index.js",
			"require": "./dist/index.cjs",
			"types": "./types/src/index.d.ts",
			"default": "./dist/index.cjs"
		}
	},
	"main": "dist/index.cjs",
	"module": "src/index.js",
	"types": "types/src/index.d.ts",
	"files": [
		"dist",
		"types",
		"src"
	],
	"scripts": {
		"build": "nx run-many --targets=build:dist,build:types --projects=@evmts/unplugin ",
		"build:dist": "bun run tsup",
		"build:types": "bun run tsc --emitDeclarationOnly --declaration --declarationMap",
		"clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache",
		"format": "rome format . --write",
		"format:check": "rome format .",
		"generate:docs": "bun run typedoc",
		"lint": "rome check . --apply-unsafe",
		"lint:check": "rome check . --verbose",
		"test": "vitest --coverage",
		"test:coverage": "vitest run --coverage",
		"test:run": "vitest run",
		"test:ui": "vitest --ui"
	},
	"dependencies": {
		"@evmts/config": "workspace:^",
		"@evmts/runtime": "workspace:^",
		"@evmts/solc": "workspace:^",
		"@evmts/tsconfig": "workspace:^",
		"@types/node": "^20.8.9",
		"@types/resolve": "^1.20.4",
		"effect": "^2.0.0-next.54",
		"glob": "^10.3.10",
		"resolve": "^1.22.8",
		"solidity-ast": "^0.4.52",
		"unplugin": "^1.5.0"
	},
	"devDependencies": {
		"@evmts/base": "workspace:^",
		"@evmts/core": "workspace:^",
		"@vitest/coverage-v8": "^0.34.6",
		"@vitest/ui": "^0.34.6",
		"abitype": "^0.10.2",
		"rome": "^12.1.3",
		"solc": "0.8.22",
		"tsup": "^7.2.0",
		"typedoc": "^0.25.3",
		"typedoc-plugin-markdown": "^3.16.0",
		"typescript": "^5.2.2",
		"vitest": "^0.34.6",
		"wagmi": "^1.4.5",
		"zod": "^3.22.4"
	},
	"peerDependencies": {
		"solc": ">0.8.10"
	},
	"publishConfig": {
		"access": "public"
	}
}
