{
  "name": "@andend-collective/locker",
  "version": "1.0.1",
  "description": "Advanced file locking and context management for AI coding assistants using Model Context Protocol",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "locker": "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": [
    "ai",
    "llm",
    "file-locking",
    "context-management",
    "mcp",
    "model-context-protocol",
    "coding-assistant",
    "claude",
    "gpt",
    "code-collaboration"
  ],
  "author": "AndEnd Collective (git@andend.io)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/AndEnd-Collective/Locker.git"
  },
  "homepage": "https://github.com/AndEnd-Collective/Locker#readme",
  "bugs": {
    "url": "https://github.com/AndEnd-Collective/Locker/issues"
  },
  "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"
  ]
}