@eclipse-glsp-examples/workflow-server-bundled-web 2.7.0-next.11 → 2.7.0-next.14
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp-examples/workflow-server-bundled-web",
|
|
3
|
-
"version": "2.7.0-next.
|
|
3
|
+
"version": "2.7.0-next.14+0090132",
|
|
4
4
|
"description": "GLSP web server for the workflow example (bundled)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "009013242e08e679f251b4bb7feceb05314d73b2"
|
|
47
47
|
}
|
|
@@ -7621,7 +7621,7 @@ function equalUpTo(one, other, epsilon = Number.EPSILON) {
|
|
|
7621
7621
|
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
7622
7622
|
********************************************************************************/
|
|
7623
7623
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
7624
|
-
exports.MaybeActions = exports.AnyObject = void 0;
|
|
7624
|
+
exports.MaybeActions = exports.MaybePromise = exports.AnyObject = void 0;
|
|
7625
7625
|
exports.typeGuard = typeGuard;
|
|
7626
7626
|
exports.typeGuardOr = typeGuardOr;
|
|
7627
7627
|
exports.toTypeGuard = toTypeGuard;
|
|
@@ -7646,6 +7646,18 @@ var AnyObject;
|
|
|
7646
7646
|
}
|
|
7647
7647
|
AnyObject.is = is;
|
|
7648
7648
|
})(AnyObject || (exports.AnyObject = AnyObject = {}));
|
|
7649
|
+
var MaybePromise;
|
|
7650
|
+
(function (MaybePromise) {
|
|
7651
|
+
/**
|
|
7652
|
+
* Type guard to check whether a given value is a {@link PromiseLike}.
|
|
7653
|
+
* @param value The value to check.
|
|
7654
|
+
* @returns `true` if the value is a `PromiseLike`.
|
|
7655
|
+
*/
|
|
7656
|
+
function isPromise(value) {
|
|
7657
|
+
return AnyObject.is(value) && hasFunctionProp(value, 'then');
|
|
7658
|
+
}
|
|
7659
|
+
MaybePromise.isPromise = isPromise;
|
|
7660
|
+
})(MaybePromise || (exports.MaybePromise = MaybePromise = {}));
|
|
7649
7661
|
/** Utility function to combine two type guards */
|
|
7650
7662
|
function typeGuard(one, other) {
|
|
7651
7663
|
return (element) => one(element) && other(element);
|
|
@@ -101451,7 +101463,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"$schema":"http://json-schema.org/dra
|
|
|
101451
101463
|
/***/ ((module) => {
|
|
101452
101464
|
|
|
101453
101465
|
"use strict";
|
|
101454
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@eclipse-glsp/server-mcp","version":"2.7.0
|
|
101466
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@eclipse-glsp/server-mcp","version":"2.7.0","description":"Model Context Protocol (MCP) server for the GLSP TypeScript server — runs on Node, browser, and Fetch-API runtimes","keywords":["eclipse","graphics","diagram","modeling","visualization","glsp","diagram editor","mcp"],"homepage":"https://www.eclipse.org/glsp/","bugs":"https://github.com/eclipse-glsp/glsp/issues","repository":{"type":"git","url":"https://github.com/eclipse-glsp/glsp-server-node.git"},"license":"(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)","author":{"name":"Eclipse GLSP"},"contributors":[{"name":"Eclipse GLSP Project","email":"glsp-dev@eclipse.org","url":"https://projects.eclipse.org/projects/ecd.glsp"}],"main":"lib/node/index","browser":{"lib/node/index":"./lib/browser/index"},"types":"lib/common/index","files":["lib","src","node.js","node.d.ts","browser.js","browser.d.ts","common.js","common.d.ts"],"scripts":{"build":"tsc -b","clean":"rimraf lib *.tsbuildinfo coverage .nyc_output","generate:index":"glsp generateIndex src/browser src/common src/node -f -s","lint":"eslint --ext .ts,.tsx ./src","test":"mocha --config ../../.mocharc \\"./src/**/*.spec.?(ts|tsx)\\"","test:ci":"yarn test --reporter mocha-ctrf-json-reporter","test:coverage":"nyc yarn test","watch":"tsc -w"},"dependencies":{"@eclipse-glsp/server":"2.7.0","@hono/node-server":"^1.19.9","@modelcontextprotocol/sdk":"^1.29.0"},"peerDependencies":{"inversify":"^6.1.3"},"publishConfig":{"access":"public"}}');
|
|
101455
101467
|
|
|
101456
101468
|
/***/ })
|
|
101457
101469
|
|