{
  "name": "gmail-getter",
  "version": "2.3.0",
  "description": "A simple tool that gets emails from the Gmail API",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "bin": {
    "get-refresh-token": "dist/get-token-script.js"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "generate-schema": "ts-json-schema-generator --path 'src/**/types/*.ts' -o 'tests/schema.json'",
    "test": "jest",
    "format": "prettier . --write --list-different && eslint src/**/*.ts tests/**/*.ts jest.config.ts --fix",
    "lint": "prettier . --check && eslint src/**/*.ts tests/**/*.ts jest.config.ts",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/bormando/gmail-getter.git"
  },
  "keywords": [
    "gmail",
    "test",
    "api",
    "qa"
  ],
  "author": "Dmitrii Bormotov",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/jest-json-schema": "^6.1.4",
    "@types/node": "^22.15.28",
    "@typescript-eslint/parser": "^8.33.0",
    "dotenv": "^16.5.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "google-auth-library": "^9.15.1",
    "jest": "^29.7.0",
    "jest-json-schema": "^6.1.0",
    "prettier": "^3.5.3",
    "prettier-plugin-organize-imports": "^4.1.0",
    "ts-jest": "^29.3.4",
    "ts-json-schema-generator": "^2.4.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@google-cloud/local-auth": "^3.0.1",
    "axios": "^1.9.0"
  }
}
