-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "d-msgraph-cli",
"version": "1.0.0",
"description": "Microsoft Graph CLI tool for mail and calendar operations",
"main": "dist/index.js",
"bin": {
"d-msgraph": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"lint": "eslint src/ --ext .ts",
"clean": "rimraf dist"
},
"keywords": [],
"author": "",
"files": [
"dist/"
],
"license": "ISC",
"dependencies": {
"@azure/msal-node": "^5.0.4",
"@microsoft/microsoft-graph-client": "^3.0.7",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"ora": "^9.3.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}