outlook-events-client
Version:
TypeScript library to manage Outlook calendar events using the Microsoft Graph API.
65 lines (64 loc) • 1.57 kB
JSON
{
"name": "outlook-events-client",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"author": {
"name": "Felix M. Martinez",
"email": "felixmanuel396@gmail.com",
"url": "https://github.com/Fmanuel809"
},
"license": "MIT",
"description": "TypeScript library to manage Outlook calendar events using the Microsoft Graph API.",
"keywords": [
"outlook",
"events",
"client",
"microsoft",
"graph",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/Fmanuel809/outlook-events-client"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/node": "^22.15.29",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.27.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
},
"dependencies": {
"@azure/identity": "^4.10.0",
"@microsoft/microsoft-graph-client": "^3.0.7"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"homepage": "https://github.com/Fmanuel809/outlook-events-client#readme",
"bugs": {
"url": "https://github.com/Fmanuel809/outlook-events-client/issues"
}
}