{
  "name": "ollama-checker",
  "version": "3.0.7",
  "description": "Intelligent CLI tool with AI-powered model selection that analyzes your hardware and recommends optimal LLM models for your system",
  "bin": {
    "ollama-checker": "bin/enhanced_cli.js"
  },
  "main": "src/index.js",
  "scripts": {
    "test": "jest",
    "test:gpu": "node tests/gpu-detection/multi-gpu.test.js",
    "test:platform": "node tests/platform-tests/cross-platform.test.js",
    "test:ui": "node tests/ui-tests/interface.test.js",
    "test:all": "node tests/run-all-tests.js",
    "build": "echo 'No build needed'",
    "dev": "node bin/enhanced_cli.js",
    "start": "node bin/enhanced_cli.js",
    "check": "node bin/enhanced_cli.js check",
    "recommend": "node bin/enhanced_cli.js recommend",
    "ollama": "node bin/enhanced_cli.js ollama",
    "list-models": "node bin/enhanced_cli.js list-models",
    "ai-check": "node bin/enhanced_cli.js ai-check",
    "ai-run": "node bin/enhanced_cli.js ai-run",
    "benchmark": "cd ml-model && python python/benchmark_collector.py",
    "train-ai": "cd ml-model && python python/train_model.py",
    "postinstall": "echo 'LLM Checker installed. Run: llm-checker hw-detect'"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "inquirer": "^8.2.6",
    "node-fetch": "^2.7.0",
    "ora": "^5.4.1",
    "sql.js": "^1.10.0",
    "systeminformation": "^5.21.0",
    "table": "^6.8.1"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "jest": "^29.7.0"
  },
  "keywords": [
    "llm",
    "ai",
    "intelligent-selector",
    "model-recommendation",
    "hardware-analysis",
    "machine-learning",
    "hardware",
    "compatibility",
    "cli",
    "ollama",
    "small-language-models",
    "sllm",
    "local-ai",
    "quantization",
    "inference",
    "gpu",
    "vram",
    "performance",
    "benchmark",
    "apple-silicon",
    "memory-optimization"
  ],
  "author": "Pavelevich (https://github.com/Pavelevich)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Pavelevich/llm-checker.git"
  },
  "homepage": "https://github.com/Pavelevich/llm-checker#readme",
  "bugs": {
    "url": "https://github.com/Pavelevich/llm-checker/issues"
  },
  "readmeFilename": "README.md",
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=8.0.0"
  },
  "os": [
    "darwin",
    "linux",
    "win32"
  ],
  "preferGlobal": true,
  "files": [
    "bin/",
    "src/",
    "analyzer/",
    "ml-model/",
    "README.md",
    "USAGE_GUIDE.md",
    "TECHNICAL_DOCS.md",
    "LICENSE"
  ]
}
