@dynatrace-oss/dynatrace-mcp-server 1.5.0-beta.3 → 1.5.0-beta.4
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/dist/utils/version.js +1 -1
- package/package.json +3 -4
package/dist/utils/version.js
CHANGED
|
@@ -4,7 +4,7 @@ exports.getPackageJsonVersion = getPackageJsonVersion;
|
|
|
4
4
|
const package_json_1 = require("../../package.json");
|
|
5
5
|
/**
|
|
6
6
|
* Gets the current version of the Dynatrace MCP Server from package.json
|
|
7
|
-
* Note:
|
|
7
|
+
* Note: package.json is listed in exports to allow external access via require('pkg/package.json')
|
|
8
8
|
* @returns The version string from package.json
|
|
9
9
|
*/
|
|
10
10
|
function getPackageJsonVersion() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynatrace-oss/dynatrace-mcp-server",
|
|
3
|
-
"version": "1.5.0-beta.
|
|
3
|
+
"version": "1.5.0-beta.4",
|
|
4
4
|
"mcpName": "io.github.dynatrace-oss/Dynatrace-mcp",
|
|
5
5
|
"description": "Model Context Protocol (MCP) server for Dynatrace",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"main": "./dist/index.js",
|
|
13
13
|
"type": "commonjs",
|
|
14
14
|
"bin": {
|
|
15
|
-
"mcp-server-dynatrace": "
|
|
15
|
+
"mcp-server-dynatrace": "dist/index.js"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist"
|
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"exports": {
|
|
21
21
|
"./package.json": "./package.json",
|
|
22
22
|
".": {
|
|
23
|
-
"
|
|
24
|
-
"default": "./index.js"
|
|
23
|
+
"default": "./dist/index.js"
|
|
25
24
|
}
|
|
26
25
|
},
|
|
27
26
|
"bugs": {
|