-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
71 lines (71 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@eclipse-glsp-examples/workflow-server",
"version": "2.3.0-next",
"description": "GLSP node server for the workflow example",
"keywords": [
"eclipse",
"graphics",
"diagram",
"modeling",
"visualization",
"glsp",
"diagram editor"
],
"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": "STMicroelectronics",
"url": "https://www.st.com/"
},
{
"name": "Eclipse GLSP Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.glsp"
}
],
"main": "./lib/node/index.js",
"browser": {
"./lib/node/index.js": "./lib/browser/index.js"
},
"types": "lib/index",
"files": [
"lib",
"src",
"node.js",
"node.d.ts",
"browser.d.ts",
"browser.js"
],
"scripts": {
"build": "tsc -b && yarn bundle",
"bundle": "webpack",
"bundle:browser": "webpack --env target=webworker ",
"clean": "rimraf lib *.tsbuildinfo",
"generate:index": "glsp generateIndex src/browser src/common src/node -s -f",
"lint": "eslint --ext .ts,.tsx ./src",
"watch": "tsc -w",
"watch:bundle": "webpack -w"
},
"dependencies": {
"@eclipse-glsp/layout-elk": "2.3.0-next",
"@eclipse-glsp/server": "2.3.0-next",
"inversify": "~6.0.2"
},
"devDependencies": {
"source-map-loader": "^4.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"publishConfig": {
"access": "public"
}
}