debugmcp 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/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "debugmcp",
3
+ "version": "0.1.0",
4
+ "description": "Standalone MCP debugger host for explicitly configured Debug Adapter Protocol adapters.",
5
+ "license": "MIT",
6
+ "author": "Microsoft Corporation",
7
+ "homepage": "https://github.com/microsoft/DebugMCP#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/microsoft/DebugMCP.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/microsoft/DebugMCP/issues"
14
+ },
15
+ "keywords": [
16
+ "debugger",
17
+ "debug-adapter-protocol",
18
+ "dap",
19
+ "mcp",
20
+ "model-context-protocol",
21
+ "copilot"
22
+ ],
23
+ "bin": {
24
+ "debugmcp": "dist/debugmcp.js"
25
+ },
26
+ "files": [
27
+ "dist/debugmcp.js",
28
+ "README.md",
29
+ "LICENSE.txt"
30
+ ],
31
+ "engines": {
32
+ "node": ">=20"
33
+ },
34
+ "scripts": {
35
+ "prepack": "node scripts/prepare-package.js"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public",
39
+ "registry": "https://registry.npmjs.org"
40
+ }
41
+ }