forked from danielmeppiel/agentic-platform-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.88 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
{
"name": "platform-eng-copilot",
"version": "1.0.0",
"description": "This guide outlines an architecture for leveraging the Model Context Protocol (MCP) to create a powerful Platform Engineering experience through AI agents. By combining MCP's tools, prompts, and client-server architecture, we can create seamless, standardized workflows that automate complex platform engineering tasks while maintaining the human-in-the-loop element essential for critical decisions.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc && cp -r config dist/",
"start": "node -r dotenv/config dist/server.js",
"dev": "nodemon -r dotenv/config --exec ts-node server.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielmeppiel/agentic-platform-engineering.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielmeppiel/agentic-platform-engineering/issues"
},
"homepage": "https://github.com/danielmeppiel/agentic-platform-engineering#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"dotenv": "^16.4.7",
"js-yaml": "^4.1.0",
"libsodium-wrappers": "^0.7.15",
"octokit": "^4.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.9",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}