{ "name": "terminal-layout-sync", "version": "1.0.0", "description": "A CLI tool for saving, restoring, and syncing terminal workspace layouts across machines", "main": "dist/index.js", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "test": "jest", "test:unit": "jest --testPathPattern=tests/unit", "test:integration": "jest --testPathPattern=tests/integration", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "typecheck": "tsc --noEmit" }, "keywords": [ "terminal", "tmux", "layout", "cli", "workspace", "sync" ], "author": "", "license": "MIT", "dependencies": { "ajv": "^8.12.0", "commander": "^11.1.0", "execa": "^8.0.1", "fs-extra": "^11.1.1", "inquirer": "^9.2.12", "js-yaml": "^4.1.0", "open": "^9.1.0" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.11", "@types/js-yaml": "^4.0.9", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "eslint-config-prettier": "^10.1.8", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }