{
  "name": "file-organizer-mcp",
  "version": "3.4.2",
  "description": "Intelligent file organization MCP server for Claude with security-hardened operations, auto-categorization, and duplicate detection",
  "type": "module",
  "main": "dist/src/index.js",
  "bin": {
    "file-organizer-mcp": "./bin/file-organizer-mcp.mjs",
    "file-organizer": "./bin/file-organizer-mcp.mjs",
    "file-organizer-setup": "./bin/file-organizer-setup.mjs"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "start": "node dist/src/index.js",
    "dev": "npm run build && npm run start",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
    "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
    "test:security": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit/security_suite.test.ts tests/unit/security_repro.test.ts tests/unit/category_security.test.ts",
    "setup": "node dist/src/tui/index.js",
    "postinstall": "node scripts/postinstall.cjs",
    "prepare": "node scripts/prepare.cjs",
    "prepublishOnly": "npm run clean && npm run build && npm test",
    "test:phase1": "node dist/tests/test-phase1.js",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "docs:generate": "node scripts/generate-docs.js",
    "clean": "rimraf dist"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "file-organizer",
    "file-organization",
    "file-management",
    "automation",
    "claude",
    "ai-tools",
    "duplicate-detection",
    "file-categorization",
    "typescript",
    "security"
  ],
  "author": "kridaydave",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kridaydave/File-Organizer-MCP.git"
  },
  "bugs": {
    "url": "https://github.com/kridaydave/File-Organizer-MCP/issues"
  },
  "homepage": "https://github.com/kridaydave/File-Organizer-MCP#readme",
  "dependencies": {
    "@inquirer/prompts": "^8.2.0",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "chalk": "^5.6.2",
    "exif-parser": "^0.1.12",
    "ink": "^5.2.1",
    "ink-text-input": "^6.0.0",
    "mammoth": "^1.11.0",
    "minimatch": "^10.1.2",
    "music-metadata": "^11.11.2",
    "node-cron": "^4.2.1",
    "pdf-parse": "^2.4.5",
    "piexifjs": "^1.0.6",
    "react": "^19.2.4",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.0",
    "@types/node-cron": "^3.0.11",
    "@types/ws": "^8.18.1",
    "eslint": "^9.39.2",
    "globals": "^17.3.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.2",
    "typescript-eslint": "^8.54.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "os": [
    "win32",
    "darwin",
    "linux"
  ],
  "cpu": [
    "x64",
    "arm64"
  ],
  "files": [
    "bin",
    "dist",
    "scripts/postinstall.cjs",
    "scripts/prepare.cjs",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "ARCHITECTURE.md",
    "CONTRIBUTING.md",
    "MIGRATION.md"
  ],
  "private": false,
  "publishConfig": {
    "access": "public"
  }
}
