{
  "name": "@tevm/cli",
  "version": "0.0.0",
  "license": "MIT",
  "type": "module",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/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": "dist/index.d.ts",
  "bin": {
    "create-tevm-app": "dist/create-tevm-app.js"
  },
  "files": [
    "dist",
    "src",
    "fixtures"
  ],
  "dependencies": {
    "@tanstack/react-query": "^5.17.19",
    "@types/ink-select-input": "^3.0.5",
    "@types/object-hash": "^3.0.6",
    "figures": "^6.0.1",
    "fs-extra": "^11.2.0",
    "ink": "^4.4.1",
    "ink-big-text": "^2.0.0",
    "ink-gradient": "^3.0.0",
    "ink-select-input": "^5.0.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^5.0.1",
    "object-hash": "^3.0.0",
    "pastel": "^2.0.0",
    "react": "^18.2.0",
    "tsup": "^8.0.1",
    "unique-names-generator": "^4.7.1",
    "zod": "^3.21.4",
    "zustand": "^4.5.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/react": "^18.0.32",
    "@vitest/coverage-v8": "^0.34.6",
    "@vitest/ui": "^0.34.6",
    "chalk": "^5.2.0",
    "ink-testing-library": "^3.0.0",
    "rome": "^12.1.3",
    "typescript": "^5.0.3",
    "vitest": "^0.34.6",
    "@tevm/tsconfig": "^1.0.0-next.23",
    "@tevm/tsupconfig": "^1.0.0-next.23"
  },
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "all": "bun nx build:app && bun typecheck && bun run lint && bun run format && bun run test:coverage && bun run lint:deps && bun run lint:package",
    "build:dist": "tsup",
    "build:types": "tsup --dts-only",
    "dev": "tsup --watch --onSuccess='bun run start'",
    "format": "rome format . --write",
    "format:check": "rome format .",
    "lint": "rome check . --apply-unsafe",
    "lint:check": "rome check . --verbose",
    "lint:deps": "bunx depcheck",
    "lint:package": "bunx publint --strict && attw --pack",
    "start": "node dist/create-tevm-app.js",
    "test": "vitest --coverage",
    "test:coverage": "vitest run --coverage",
    "test:run": "vitest run",
    "test:ui": "vitest --ui",
    "typecheck": "tsc --noEmit"
  }
}