-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vibemcp",
"version": "0.2.0",
"description": "Token-Optimized Unified MCP Server for Gmail & Microsoft 365",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"vibemcp": "./dist/cli.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest",
"test:coverage": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"prepare": "npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"mcp",
"model-context-protocol",
"gmail",
"outlook",
"microsoft-365",
"toon",
"token-optimization",
"llm",
"ai",
"claude",
"anthropic"
],
"author": {
"name": "VibeTensor Private Limited",
"email": "info@vibetensor.com",
"url": "https://vibetensor.com"
},
"license": "PolyForm-Noncommercial-1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/VibeTensor/vibemcp.git"
},
"bugs": {
"url": "https://github.com/VibeTensor/vibemcp/issues"
},
"homepage": "https://vibemcp.vibetensor.com",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@azure/msal-node": "^5.0.6",
"@modelcontextprotocol/sdk": "^1.12.0",
"dotenv": "^17.3.1",
"googleapis": "^172.0.0",
"open": "^11.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.0.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"mermaid": "^11.12.3",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
]
}