@bpmnkit/plugins 0.0.8 → 0.0.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.
- package/LICENSE +21 -0
- package/README.md +7 -3
- package/package.json +139 -120
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 urbanisierung
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/
|
|
2
|
+
<img src="https://raw.githubusercontent.com/bpmnkit/monorepo/main/doc/logos/logo-2-gateway.svg" width="72" height="72" alt="BPMN Kit logo">
|
|
3
3
|
<h1>@bpmnkit/plugins</h1>
|
|
4
4
|
<p>22 composable canvas plugins — minimap, AI chat, process simulation, storage, and more</p>
|
|
5
5
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://github.com/bpmnkit/monorepo/blob/main/LICENSE)
|
|
8
8
|
[](https://github.com/bpmnkit/monorepo)
|
|
9
9
|
|
|
10
|
-
[Documentation](https://
|
|
10
|
+
[Documentation](https://docs.bpmnkit.com) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/packages/plugins/CHANGELOG.md)
|
|
11
11
|
</div>
|
|
12
12
|
|
|
13
13
|
---
|
|
@@ -145,9 +145,13 @@ const ai = createAiBridgePlugin({
|
|
|
145
145
|
| [`@bpmnkit/feel`](https://www.npmjs.com/package/@bpmnkit/feel) | FEEL expression language parser & evaluator |
|
|
146
146
|
| [`@bpmnkit/api`](https://www.npmjs.com/package/@bpmnkit/api) | Camunda 8 REST API TypeScript client |
|
|
147
147
|
| [`@bpmnkit/ascii`](https://www.npmjs.com/package/@bpmnkit/ascii) | Render BPMN diagrams as Unicode ASCII art |
|
|
148
|
+
| [`@bpmnkit/ui`](https://www.npmjs.com/package/@bpmnkit/ui) | Shared design tokens and UI components |
|
|
148
149
|
| [`@bpmnkit/profiles`](https://www.npmjs.com/package/@bpmnkit/profiles) | Shared auth, profile storage, and client factories for CLI & proxy |
|
|
149
150
|
| [`@bpmnkit/operate`](https://www.npmjs.com/package/@bpmnkit/operate) | Monitoring & operations frontend for Camunda clusters |
|
|
151
|
+
| [`@bpmnkit/connector-gen`](https://www.npmjs.com/package/@bpmnkit/connector-gen) | Generate connector templates from OpenAPI specs |
|
|
152
|
+
| [`@bpmnkit/cli`](https://www.npmjs.com/package/@bpmnkit/cli) | Camunda 8 command-line interface (casen) |
|
|
153
|
+
| [`@bpmnkit/proxy`](https://www.npmjs.com/package/@bpmnkit/proxy) | Local AI bridge and Camunda API proxy server |
|
|
150
154
|
|
|
151
155
|
## License
|
|
152
156
|
|
|
153
|
-
[MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) ©
|
|
157
|
+
[MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © BPMN Kit
|
package/package.json
CHANGED
|
@@ -1,121 +1,140 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@bpmnkit/plugins",
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./ai-bridge": {
|
|
8
|
+
"import": "./dist/ai-bridge/index.js",
|
|
9
|
+
"types": "./dist/ai-bridge/index.d.ts"
|
|
10
|
+
},
|
|
11
|
+
"./ascii-view": {
|
|
12
|
+
"import": "./dist/ascii-view/index.js",
|
|
13
|
+
"types": "./dist/ascii-view/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./command-palette": {
|
|
16
|
+
"import": "./dist/command-palette/index.js",
|
|
17
|
+
"types": "./dist/command-palette/index.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./command-palette-editor": {
|
|
20
|
+
"import": "./dist/command-palette-editor/index.js",
|
|
21
|
+
"types": "./dist/command-palette-editor/index.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"./config-panel": {
|
|
24
|
+
"import": "./dist/config-panel/index.js",
|
|
25
|
+
"types": "./dist/config-panel/index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./config-panel-bpmn": {
|
|
28
|
+
"import": "./dist/config-panel-bpmn/index.js",
|
|
29
|
+
"types": "./dist/config-panel-bpmn/index.d.ts"
|
|
30
|
+
},
|
|
31
|
+
"./element-docs": {
|
|
32
|
+
"import": "./dist/element-docs/index.js",
|
|
33
|
+
"types": "./dist/element-docs/index.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./dmn-editor": {
|
|
36
|
+
"import": "./dist/dmn-editor/index.js",
|
|
37
|
+
"types": "./dist/dmn-editor/index.d.ts"
|
|
38
|
+
},
|
|
39
|
+
"./dmn-viewer": {
|
|
40
|
+
"import": "./dist/dmn-viewer/index.js",
|
|
41
|
+
"types": "./dist/dmn-viewer/index.d.ts"
|
|
42
|
+
},
|
|
43
|
+
"./feel-playground": {
|
|
44
|
+
"import": "./dist/feel-playground/index.js",
|
|
45
|
+
"types": "./dist/feel-playground/index.d.ts"
|
|
46
|
+
},
|
|
47
|
+
"./form-editor": {
|
|
48
|
+
"import": "./dist/form-editor/index.js",
|
|
49
|
+
"types": "./dist/form-editor/index.d.ts"
|
|
50
|
+
},
|
|
51
|
+
"./form-viewer": {
|
|
52
|
+
"import": "./dist/form-viewer/index.js",
|
|
53
|
+
"types": "./dist/form-viewer/index.d.ts"
|
|
54
|
+
},
|
|
55
|
+
"./history": {
|
|
56
|
+
"import": "./dist/history/index.js",
|
|
57
|
+
"types": "./dist/history/index.d.ts"
|
|
58
|
+
},
|
|
59
|
+
"./main-menu": {
|
|
60
|
+
"import": "./dist/main-menu/index.js",
|
|
61
|
+
"types": "./dist/main-menu/index.d.ts"
|
|
62
|
+
},
|
|
63
|
+
"./minimap": {
|
|
64
|
+
"import": "./dist/minimap/index.js",
|
|
65
|
+
"types": "./dist/minimap/index.d.ts"
|
|
66
|
+
},
|
|
67
|
+
"./optimize": {
|
|
68
|
+
"import": "./dist/optimize/index.js",
|
|
69
|
+
"types": "./dist/optimize/index.d.ts"
|
|
70
|
+
},
|
|
71
|
+
"./process-runner": {
|
|
72
|
+
"import": "./dist/process-runner/index.js",
|
|
73
|
+
"types": "./dist/process-runner/index.d.ts"
|
|
74
|
+
},
|
|
75
|
+
"./storage": {
|
|
76
|
+
"import": "./dist/storage/index.js",
|
|
77
|
+
"types": "./dist/storage/index.d.ts"
|
|
78
|
+
},
|
|
79
|
+
"./storage-tabs-bridge": {
|
|
80
|
+
"import": "./dist/storage-tabs-bridge/index.js",
|
|
81
|
+
"types": "./dist/storage-tabs-bridge/index.d.ts"
|
|
82
|
+
},
|
|
83
|
+
"./tabs": {
|
|
84
|
+
"import": "./dist/tabs/index.js",
|
|
85
|
+
"types": "./dist/tabs/index.d.ts"
|
|
86
|
+
},
|
|
87
|
+
"./token-highlight": {
|
|
88
|
+
"import": "./dist/token-highlight/index.js",
|
|
89
|
+
"types": "./dist/token-highlight/index.d.ts"
|
|
90
|
+
},
|
|
91
|
+
"./watermark": {
|
|
92
|
+
"import": "./dist/watermark/index.js",
|
|
93
|
+
"types": "./dist/watermark/index.d.ts"
|
|
94
|
+
},
|
|
95
|
+
"./zoom-controls": {
|
|
96
|
+
"import": "./dist/zoom-controls/index.js",
|
|
97
|
+
"types": "./dist/zoom-controls/index.d.ts"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"files": [
|
|
101
|
+
"README.md",
|
|
102
|
+
"dist/**/*.js",
|
|
103
|
+
"dist/**/*.d.ts"
|
|
104
|
+
],
|
|
105
|
+
"dependencies": {
|
|
106
|
+
"@bpmnkit/ascii": "0.0.9",
|
|
107
|
+
"@bpmnkit/core": "0.0.9",
|
|
108
|
+
"@bpmnkit/canvas": "0.0.9",
|
|
109
|
+
"@bpmnkit/feel": "0.0.9",
|
|
110
|
+
"@bpmnkit/editor": "0.0.9"
|
|
111
|
+
},
|
|
112
|
+
"description": "22 composable canvas plugins for BPMN editors and viewers — minimap, AI chat, process simulation, storage, and more",
|
|
113
|
+
"keywords": [
|
|
114
|
+
"bpmn",
|
|
115
|
+
"plugins",
|
|
116
|
+
"canvas",
|
|
117
|
+
"minimap",
|
|
118
|
+
"workflow",
|
|
119
|
+
"typescript",
|
|
120
|
+
"camunda"
|
|
121
|
+
],
|
|
122
|
+
"license": "MIT",
|
|
123
|
+
"repository": {
|
|
124
|
+
"type": "git",
|
|
125
|
+
"url": "https://github.com/bpmnkit/monorepo"
|
|
126
|
+
},
|
|
127
|
+
"homepage": "https://bpmnkit.com",
|
|
128
|
+
"bugs": {
|
|
129
|
+
"url": "https://github.com/bpmnkit/monorepo/issues"
|
|
130
|
+
},
|
|
131
|
+
"publishConfig": {
|
|
132
|
+
"access": "public"
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"build": "tsc",
|
|
136
|
+
"typecheck": "tsc --noEmit",
|
|
137
|
+
"check": "biome check .",
|
|
138
|
+
"test": "vitest run"
|
|
139
|
+
}
|
|
140
|
+
}
|