From 93dc7bd549b861058f10005e7dc8e066ab7eef2c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 19:31:30 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- package.json | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..18137f9 --- /dev/null +++ b/package.json @@ -0,0 +1,52 @@ +{ + "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" + } +}