@checkfirst/nestjs-outlook
Version:
An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.
110 lines (109 loc) • 3.22 kB
JSON
{
"name": "@checkfirst/nestjs-outlook",
"version": "4.1.0",
"description": "An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "concurrently \"tsc --watch\" \"chokidar dist -c 'yalc push'\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/checkfirst-ltd/nestjs-outlook.git"
},
"keywords": [
"nestjs",
"outlook",
"microsoft",
"microsoft365",
"email",
"calendar",
"microsoft-graph",
"oauth",
"webhooks",
"checkfirst"
],
"author": {
"name": "Checkfirst",
"email": "dev@checkfirst.ai",
"url": "https://checkfirst.ai"
},
"contributors": [
{
"name": "Checkfirst Team",
"url": "https://github.com/checkfirst-ltd"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/checkfirst-ltd/nestjs-outlook/issues"
},
"homepage": "https://github.com/checkfirst-ltd/nestjs-outlook#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/checkfirst-ltd"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^3.0.7",
"@microsoft/microsoft-graph-types": "^2.40.0",
"axios": "^1.6.0",
"class-validator": "^0.14.0"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/schedule": "^2.0.0 || ^3.0.0 || ^4.0.0",
"@nestjs/typeorm": "^8.0.0 || ^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^7.0.0",
"typeorm": "^0.3.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/js": "^9.26.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/event-emitter": "^2.0.3",
"@nestjs/schedule": "^4.0.0",
"@nestjs/swagger": "^7.3.0",
"@nestjs/testing": "^10.0.0",
"@nestjs/typeorm": "^10.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"globals": "^16.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"reflect-metadata": "^0.2.0",
"rimraf": "^5.0.0",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.0",
"typeorm": "^0.3.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.31.1",
"yalc": "^1.0.0-pre.53"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"assets/**/*"
]
}