package.json•1.43 kB
{
"name": "mcp-control",
"version": "0.2.0",
"description": "Windows control server for the Model Context Protocol",
"license": "MIT",
"type": "module",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"build": "tsc",
"build:all": "node scripts/build.js",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js}\" \"test/**/*.js\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\" \"test/**/*.js\"",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"clipboardy": "^4.0.0",
"keysender": "^2.3.0",
"sharp": "^0.34.3",
"ulid": "^3.0.1",
"uuid": "^11.1.0",
"zod": "^3.25.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/express": "^5.0.2",
"@types/node": "^22.15.19",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitest/coverage-v8": "^3.1.3",
"audit-ci": "^7.1.0",
"eslint": "^9.31.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.0.8"
}
}