-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1019 Bytes
/
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
{
"version": "1.1.14",
"private": true,
"scripts": {
"all": "yarn install && yarn lint",
"build": "lerna run build",
"bundle": " lerna run bundle",
"clean": "lerna run clean",
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"prepare": "lerna run prepare",
"watch": "lerna run --parallel watch"
},
"workspaces": [
"webview",
"extension"
],
"resolutions": {
"@open-bpmn/open-bpmn-glsp": "file:./../open-bpmn/open-bpmn.glsp-client/open-bpmn-glsp/",
"@open-bpmn/open-bpmn-model": "file:./../open-bpmn/open-bpmn.glsp-client/open-bpmn-model/",
"@open-bpmn/open-bpmn-properties": "file:./../open-bpmn/open-bpmn.glsp-client/open-bpmn-properties/",
"string-width": "4.2.3"
},
"devDependencies": {
"@eclipse-glsp/dev": "~2.0.0",
"@types/node": "16",
"@types/vscode": "^1.54.0",
"inversify": "6.0.2",
"lerna": "^6.6.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.11.0",
"yarn": ">=1.7.0 <2.x.x"
}
}