UNPKG

gmail-reader

Version:

A Gmail reader package for Google Workspace accounts with domain-wide delegation support

63 lines (62 loc) 1.51 kB
{ "name": "gmail-reader", "version": "1.0.0", "description": "A Gmail reader package for Google Workspace accounts with domain-wide delegation support", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "prepare": "npm run build", "example": "ts-node examples/readFromEmail.ts", "example:delegated": "ts-node examples/domainWideDelegation.ts" }, "keywords": [ "gmail", "reader", "oauth2", "google-workspace", "domain-wide-delegation", "service-account" ], "author": "ProdCrew", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.4.2" }, "dependencies": { "dotenv": "^16.4.5", "google-auth-library": "^9.6.3", "googleapis": "^133.0.0" }, "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "https://github.com/ICOM25/workspace-gmail-reader.git" }, "bugs": { "url": "https://github.com/ICOM25/workspace-gmail-reader/issues" }, "private": false, "publishConfig": { "access": "public" } }