{
  "name": "vde-layout",
  "version": "1.1.3",
  "description": "Terminal multiplexer layout management tool for VDE (Vibe Coding Development Environment)",
  "type": "module",
  "packageManager": "pnpm@10.28.2",
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "types": "dist/index.d.mts",
  "bin": {
    "vde-layout": "./bin/vde-layout"
  },
  "scripts": {
    "build": "tsdown",
    "clean": "rm -rf dist",
    "dev": "tsdown --watch",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "test": "pnpm build && vitest run",
    "ci": "concurrently -n format,typecheck,lint,test -p \"{name}\" --pad-prefix --kill-others-on-fail \"pnpm run format:check\" \"pnpm run typecheck\" \"pnpm run lint\" \"pnpm run test\"",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "typecheck": "tsc -b",
    "ci:fix": "pnpm format && pnpm typecheck && pnpm lint:fix && pnpm test",
    "prepublishOnly": "pnpm clean && pnpm build"
  },
  "keywords": [
    "tmux",
    "layout",
    "terminal",
    "multiplexer",
    "vde",
    "cli"
  ],
  "author": "Yuki Yano",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yuki-yano/vde-layout.git"
  },
  "bugs": {
    "url": "https://github.com/yuki-yano/vde-layout/issues"
  },
  "homepage": "https://github.com/yuki-yano/vde-layout#readme",
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "chalk": "^5.4.1",
    "citty": "^0.2.0",
    "execa": "^9.6.0",
    "fs-extra": "^11.2.0",
    "string-width": "^8.1.1",
    "yaml": "^2.3.4",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@eslint/js": "^9.35.0",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^24.5.2",
    "@vitest/coverage-v8": "^3.2.4",
    "concurrently": "^9.2.1",
    "eslint": "^9.35.0",
    "eslint-config-prettier": "^10.1.5",
    "globals": "^16.4.0",
    "prettier": "^3.6.2",
    "tsdown": "^0.20.1",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.35.1",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=22.0.0"
  }
}
