{
    "name": "mailsafepro-sdk",
    "version": "1.2.3",
    "description": "Official Node.js/TypeScript SDK for MailSafePro Email Validation API - Professional email verification with batch processing, rate limiting, and comprehensive error handling",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist",
        "README.md",
        "LICENSE",
        "CHANGELOG.md"
    ],
    "scripts": {
        "build": "npm run clean && tsc",
        "build:watch": "tsc --watch",
        "clean": "rm -rf dist coverage",
        "test": "jest --coverage",
        "test:watch": "jest --watch",
        "test:unit": "jest tests/unit",
        "test:integration": "jest tests/integration",
        "test:ci": "jest --coverage --ci --maxWorkers=2",
        "lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
        "lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
        "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
        "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
        "typecheck": "tsc --noEmit",
        "prepublishOnly": "npm run format:check && npm run typecheck && npm test && npm run build",
        "prepare": "husky install || true",
        "release": "npm run prepublishOnly && npm publish",
        "release:dry": "npm run prepublishOnly && npm publish --dry-run"
    },
    "keywords": [
        "email",
        "validation",
        "verification",
        "mailsafepro",
        "sdk",
        "api-client",
        "typescript",
        "nodejs",
        "email-validator",
        "email-verification",
        "smtp",
        "mx-record",
        "disposable-email",
        "batch-validation",
        "rate-limiting"
    ],
    "author": {
        "name": "MailSafePro",
        "email": "mailsafepro1@gmail.com",
        "url": "https://mailsafepro.es"
    },
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/mailsafepro/mailsafepro-sdk-js.git"
    },
    "bugs": {
        "url": "https://github.com/mailsafepro/mailsafepro-sdk-js/issues",
        "email": "mailsafepro1@gmail.com"
    },
    "homepage": "https://github.com/mailsafepro/mailsafepro-sdk-js#readme",
    "dependencies": {
        "axios": "^1.6.2"
    },
    "devDependencies": {
        "@types/jest": "^29.5.11",
        "@types/node": "^20.11.0",
        "@typescript-eslint/eslint-plugin": "^7.0.1",
        "@typescript-eslint/parser": "^7.0.1",
        "eslint": "^8.56.0",
        "eslint-config-prettier": "^9.1.0",
        "eslint-import-resolver-typescript": "^3.10.1",
        "eslint-plugin-import": "^2.29.1",
        "eslint-plugin-jest": "^28.2.0",
        "eslint-plugin-prettier": "^5.1.3",
        "husky": "^9.0.10",
        "jest": "^29.7.0",
        "lint-staged": "^15.2.2",
        "prettier": "^3.2.5",
        "ts-jest": "^29.1.2",
        "ts-node": "^10.9.2",
        "typescript": "^5.4.5"
    },
    "engines": {
        "node": ">=16.0.0",
        "npm": ">=7.0.0"
    },
    "lint-staged": {
        "*.ts": [
            "eslint --fix",
            "prettier --write"
        ]
    },
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org/"
    }
}