-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "cipp-mcp",
"version": "0.1.0",
"description": "MCP server for CIPP (CyberDrain Improved Partner Portal) — M365 multi-tenant management, users, security, and standards for MSPs",
"main": "dist/entry.js",
"bin": {
"cipp-mcp": "./dist/entry.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"prepare": "npm run build",
"prebuild": "npm run clean",
"pretest": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"cipp",
"microsoft365",
"m365",
"msp",
"azure",
"multi-tenant",
"typescript",
"nodejs"
],
"author": "Aaron Sachs",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"winston": "^3.11.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@types/jest": "^29.5.8",
"@types/node": "^26.0.0",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"jest": "^29.7.0",
"semantic-release": "^25.0.5",
"ts-jest": "^29.4.11",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
},
"engines": {
"node": ">=18.0.0"
}
}