{
  "name": "slop-detector",
  "version": "1.2.0",
  "description": "AI-generated text detection tool using the EQBench SLOP score algorithm",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "slop-detector": "dist/mcpServer.js",
    "slop-score": "dist/cli.js",
    "slop-detector-mcp": "dist/mcpServer.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc && npm run copy-assets",
    "copy-assets": "cp -r src/assets dist/",
    "score": "npm run build && node dist/cli.js",
    "mcp": "npm run build && node dist/mcpServer.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "ai-detection",
    "slop-score",
    "text-analysis",
    "llm-detection",
    "eqbench",
    "mcp",
    "model-context-protocol"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.4",
    "html-to-text": "^9.0.5",
    "wink-pos-tagger": "^2.2.2",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/html-to-text": "^9.0.4",
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CyranoB/slop-detector.git"
  }
}
