@eclipse-glsp/sprotty 2.9.0-next.3 → 2.9.0-next.9

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.
Files changed (2) hide show
  1. package/README.md +8 -5
  2. package/package.json +14 -3
package/README.md CHANGED
@@ -1,14 +1,17 @@
1
- # Eclipse GLSP - Client
1
+ # Eclipse GLSP - Sprotty
2
2
 
3
- A web-based diagram client framework for the [Graphical Language Server Platform (GLSP)](https://github.com/eclipse-glsp/glsp) based on [Eclipse Sprotty](https://github.com/eclipse/sprotty).
3
+ The [Eclipse Sprotty](https://github.com/eclipse/sprotty) integration layer of the [Graphical Language Server Platform (GLSP)](https://github.com/eclipse-glsp/glsp) client.
4
+
5
+ The package re-exports the parts of the `sprotty` and `sprotty-protocol` API that GLSP builds on and augments them where GLSP needs different behavior: base DI modules and feature modules, overrides for action handling, layouting and SVG views, and the shared type definitions.
6
+ It is the single place where the Sprotty dependency is pinned, so [`@eclipse-glsp/client`](https://www.npmjs.com/package/@eclipse-glsp/client) and downstream diagram editors consume Sprotty through this package instead of depending on it directly.
7
+
8
+ This package is an implementation detail of the GLSP client. Adopters usually depend on [`@eclipse-glsp/client`](../client), which re-exports everything needed to implement a diagram editor.
4
9
 
5
10
  ## Building
6
11
 
7
- This project is built with `pnpm` and is available from npm via [@eclipse-glsp/client](https://www.npmjs.com/package/@eclipse-glsp/client).
12
+ This project is built with `pnpm` and is available from npm via [@eclipse-glsp/sprotty](https://www.npmjs.com/package/@eclipse-glsp/sprotty).
8
13
 
9
14
  ## More information
10
15
 
11
16
  For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/).
12
17
  If you have questions, please raise them in the [discussions](https://github.com/eclipse-glsp/glsp/discussions) and have a look at our [communication and support options](https://www.eclipse.org/glsp/contact/).
13
-
14
- ![alt](https://www.eclipse.org/glsp/images/diagramanimated.gif)
package/package.json CHANGED
@@ -1,7 +1,17 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/sprotty",
3
- "version": "2.9.0-next.3",
3
+ "version": "2.9.0-next.9",
4
4
  "description": "Augmented reexport of the sprotty API for GLSP",
5
+ "keywords": [
6
+ "diagram",
7
+ "diagram editor",
8
+ "eclipse",
9
+ "glsp",
10
+ "graphics",
11
+ "modeling",
12
+ "sprotty",
13
+ "visualization"
14
+ ],
5
15
  "homepage": "https://www.eclipse.org/glsp/",
6
16
  "bugs": "https://github.com/eclipse-glsp/glsp/issues",
7
17
  "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
@@ -17,7 +27,8 @@
17
27
  ],
18
28
  "repository": {
19
29
  "type": "git",
20
- "url": "https://github.com/eclipse-glsp/glsp-core.git"
30
+ "url": "https://github.com/eclipse-glsp/glsp-core.git",
31
+ "directory": "packages/client/glsp-sprotty"
21
32
  },
22
33
  "files": [
23
34
  "lib",
@@ -29,7 +40,7 @@
29
40
  "access": "public"
30
41
  },
31
42
  "dependencies": {
32
- "@eclipse-glsp/protocol": "2.9.0-next.3",
43
+ "@eclipse-glsp/protocol": "2.9.0-next.9",
33
44
  "autocompleter": "^9.1.0",
34
45
  "snabbdom": "~3.5.1",
35
46
  "sprotty": "1.4.0",