@antonytm/mcp-sitecore-server 0.9.0 → 0.10.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/dist/bundle.js +39174 -0
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antonytm/mcp-sitecore-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "A Model Context Protocol server for Sitecore",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"README.md",
|
|
8
8
|
"LICENSE"
|
|
9
9
|
],
|
|
10
|
-
"main": "./dist/
|
|
10
|
+
"main": "./dist/bundle.js",
|
|
11
11
|
"bin": {
|
|
12
|
-
"@antonytm/mcp-sitecore-server": "./dist/
|
|
12
|
+
"@antonytm/mcp-sitecore-server": "./dist/bundle.js"
|
|
13
13
|
},
|
|
14
14
|
"type": "module",
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc",
|
|
17
|
+
"bundle": "rollup -c",
|
|
17
18
|
"prepare": "npm run build",
|
|
18
19
|
"watch": "tsc --watch",
|
|
19
20
|
"inspector": "npx @modelcontextprotocol/inspector@latest dist/index.js",
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"start:streamable-http": "npm run build && cross-env TRANSPORT=streamable-http node dist/index.js",
|
|
23
24
|
"start:stdio": "npm run build && cross-env TRANSPORT=stdio node dist/index.js",
|
|
24
25
|
"run": "npm run build && node dist/run.js",
|
|
25
|
-
"test": "npm run build && vitest run"
|
|
26
|
+
"test": "npm run build && npm run bundle && vitest run"
|
|
26
27
|
},
|
|
27
28
|
"dependencies": {
|
|
28
29
|
"@antonytm/clixml-parser": "latest",
|
|
@@ -31,10 +32,14 @@
|
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@modelcontextprotocol/inspector": "^0.11.0",
|
|
35
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
36
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
37
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
34
38
|
"@types/express": "^5.0.1",
|
|
35
39
|
"@types/node": "^22.14.1",
|
|
36
40
|
"cross-env": "^7.0.3",
|
|
37
41
|
"express": "^5.1.0",
|
|
42
|
+
"rollup": "^4.41.1",
|
|
38
43
|
"ts-node": "^10.9.2",
|
|
39
44
|
"typescript": "^5.8.3",
|
|
40
45
|
"vitest": "^3.1.3"
|