UNPKG

locker-mcp

Version:

MCP server for file locking and access control for AI code tools

49 lines 1.11 kB
{ "name": "locker-mcp", "version": "1.0.0", "description": "MCP server for file locking and access control for AI code tools", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "locker-mcp": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "ai", "code-tools", "file-locking" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.15.0" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.0.10", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "eslint": "^9.30.1", "jest": "^30.0.4", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "README.md" ] }