@co-native-ab/graphdo-ts 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +7 -0
- package/README.md +270 -0
- package/dist/index.js +45565 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@co-native-ab/graphdo-ts",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server providing AI agents with scoped access to Microsoft Graph",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"graphdo-ts": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/co-native-ab/graphdo-ts.git"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"icons": "node scripts/encode-icons.mjs",
|
|
24
|
+
"icons:check": "node scripts/encode-icons.mjs --check",
|
|
25
|
+
"preview": "node scripts/preview-pages.mjs",
|
|
26
|
+
"build": "npm run icons && node build.mjs",
|
|
27
|
+
"mcpb": "node scripts/bundle-mcpb.mjs",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:coverage": "vitest run --coverage",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"format": "prettier --write .",
|
|
32
|
+
"format:manifest": "prettier --write manifest.json",
|
|
33
|
+
"format:check": "prettier --check .",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"check": "npm run format:check && npm run icons:check && npm run lint && npm run typecheck && npm run test"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"mcp",
|
|
40
|
+
"microsoft-graph",
|
|
41
|
+
"ai-agents",
|
|
42
|
+
"graph-api"
|
|
43
|
+
],
|
|
44
|
+
"author": "co-native-ab",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=22.0.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@azure/msal-node": "^5.1.2",
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
52
|
+
"zod": "^4.3.6"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^25.6.0",
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
57
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
58
|
+
"@vitest/coverage-v8": "^4.1.4",
|
|
59
|
+
"esbuild": "^0.28.0",
|
|
60
|
+
"eslint": "^10.2.0",
|
|
61
|
+
"prettier": "^3.8.2",
|
|
62
|
+
"typescript": "^6.0.2",
|
|
63
|
+
"typescript-eslint": "^8.58.1",
|
|
64
|
+
"vitest": "^4.1.4"
|
|
65
|
+
}
|
|
66
|
+
}
|