{
  "name": "sql-slow",
  "version": "2.0.0",
  "description": "Ultra Pro SQL slow-query detector with AI optimization, multi-channel alerts, real-time dashboard and deep analytics",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    }
  },
"scripts": {
  "clean": "rimraf dist",
  "build": "tsc && echo Build complete",
  "build:watch": "tsc --watch",
  "dev": "ts-node -r tsconfig-paths/register src/index.ts",
  "test": "jest --runInBand --forceExit",
  "test:coverage": "jest --coverage --runInBand --forceExit",
  "test:watch": "jest --watch",
  "lint": "eslint \"src/**/*.ts\" --fix",
  "format": "prettier \"src/**/*.ts\" --write",
  "prepublishOnly": "npm run clean && npm run build && npm test"
},
  "keywords": [
    "sql",
    "slow-query",
    "performance",
    "monitoring",
    "ai",
    "database",
    "prisma",
    "postgres",
    "mysql",
    "mssql",
    "sql-server",
    "alerts",
    "telegram",
    "slack",
    "dashboard"
  ],
  "author": "sql-slow contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/brah-timo/sql-slow.git"
  },
  "peerDependencies": {
    "@prisma/client": ">=4.0.0",
    "mssql": ">=9.0.0"
  },
  "peerDependenciesMeta": {
    "@prisma/client": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "mysql2": {
      "optional": true
    },
    "mssql": {
      "optional": true
    }
  },
  "dependencies": {
    "axios": "^1.6.0",
    "chalk": "^4.1.2",
    "dayjs": "^1.11.10",
    "eventemitter3": "^5.0.1",
    "express": "^4.18.2",
    "node-telegram-bot-api": "^0.63.0"
  },
  "devDependencies": {
    "@prisma/client": "^5.0.0",
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.14",
    "@types/mssql": "^9.1.11",
    "@types/node": "^20.0.0",
    "@types/node-telegram-bot-api": "^0.63.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.7.0",
    "mssql": "^10.0.4",
    "mysql2": "^3.6.0",
    "pg": "^8.11.0",
    "prettier": "^3.0.0",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.0",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.2.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
