-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
141 lines (141 loc) · 3.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "vs-code-bpmn-io",
"displayName": "BPMN.io Editor",
"description": "Edit BPMN 2.0 files, powered by bpmn.io tools.",
"license": "MIT",
"version": "0.22.0",
"publisher": "bpmn-io",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/vs-code-bpmn-io"
},
"engines": {
"vscode": "^1.79.2",
"node": ">= 16"
},
"icon": "resources/logo_marketplace.png",
"categories": [
"Visualization",
"Other"
],
"keywords": [
"bpmn"
],
"activationEvents": [
"onCommand:extension.bpmn-io.edit"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "bpmn-io.bpmnEditor.new",
"title": "Create new BPMN Document",
"category": "BPMN"
}
],
"keybindings": [
{
"command": "",
"key": "ctrl+a",
"mac": "cmd+a",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+0",
"mac": "cmd+0",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+numpad_add",
"mac": "cmd+numpad_add",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+numpad_subtract",
"mac": "cmd+numpad_subtract",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+=",
"mac": "cmd+=",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+-",
"mac": "cmd+-",
"when": "bpmn-io.bpmnEditor.canvasFocused"
},
{
"command": "",
"key": "ctrl+z",
"mac": "cmd+z",
"when": "bpmn-io.bpmnEditor.canvasFocused"
}
],
"customEditors": [
{
"viewType": "bpmn-io.bpmnEditor",
"displayName": "BPMN Editor",
"selector": [
{
"filenamePattern": "*.bpmn"
}
]
}
]
},
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"vscode:prepublish": "npm run compile",
"package": "npx @vscode/vsce pack",
"compile": "run-s compile:clean compile:app compile:tests",
"compile:app": "rollup -c rollup.config.mjs",
"compile:tests": "tsc -p ./src/test",
"compile:clean": "shx rm -rf out",
"watch:app": "npm run compile:app -- -w",
"watch": "run-p watch:*",
"pretest": "run-s compile",
"test": "node ./out/test/run-tests.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.1",
"@rollup/plugin-url": "^8.0.2",
"@types/chai": "^4.3.20",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/shelljs": "^0.8.15",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/vscode": "1.79.0",
"@vscode/test-electron": "^2.4.1",
"chai": "^4.5.0",
"eslint": "^9.14.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.1",
"rollup": "^4.27.0",
"rollup-plugin-css-only": "^4.5.2",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.35",
"bpmn-js": "^18.1.2",
"bpmn-js-color-picker": "^0.7.1"
}
}