@camunda/play 6.0.3 → 6.1.1-rc.0
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/build/play.js +11251 -2
- package/build/play.js.map +1 -0
- package/package.json +73 -71
- package/build/assets/json.worker-LuvwHfLQ.js +0 -49
- package/build/index.js +0 -154439
- package/build/jsonMode.js +0 -2002
- package/build/play.css +0 -1
package/package.json
CHANGED
|
@@ -1,53 +1,57 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/play",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.1-rc.0",
|
|
4
|
+
"description": "Camunda Play",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Camunda",
|
|
4
7
|
"type": "module",
|
|
8
|
+
"main": "./build/play.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"/build"
|
|
11
|
+
],
|
|
5
12
|
"scripts": {
|
|
6
|
-
"
|
|
13
|
+
"analyze-bundle": "yarn build && source-map-explorer build/* --no-border-checks",
|
|
7
14
|
"build": "tsc && vite build",
|
|
8
15
|
"build:dev": "tsc && vite build --mode development",
|
|
9
|
-
"build:watch": "tsc-watch --onSuccess \"yarn publish-local\"",
|
|
10
16
|
"build:e2e": "yarn build --mode e2e",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"test:e2e:ci": "IS_E2E=true yarn playwright e2e/tests",
|
|
14
|
-
"generate-screenshots": "yarn playwright e2e/docs-screenshots",
|
|
17
|
+
"build:watch": "tsc-watch --onSuccess \"yarn publish-local\"",
|
|
18
|
+
"coverage": "yarn test run --coverage --changed",
|
|
15
19
|
"eslint": "eslint .",
|
|
20
|
+
"fix:prettier": "prettier --write \"**/*.{ts,tsx}\"",
|
|
21
|
+
"generate-screenshots": "yarn playwright e2e/docs-screenshots",
|
|
16
22
|
"lint": "yarn tsc && yarn eslint",
|
|
17
|
-
"
|
|
23
|
+
"playwright": "playwright test",
|
|
24
|
+
"publish-local": "yarn build:dev && npx yalc push --sig",
|
|
25
|
+
"start": "vite",
|
|
18
26
|
"test": "vitest",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"publish-local": "yarn build:dev && npx yalc push --sig"
|
|
27
|
+
"test:e2e": "yarn playwright e2e/tests",
|
|
28
|
+
"test:e2e:ci": "IS_E2E=true yarn playwright e2e/tests"
|
|
22
29
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"*": [
|
|
32
|
+
"prettier --write"
|
|
33
|
+
],
|
|
34
|
+
"*.{js,jsx,ts,tsx}": [
|
|
35
|
+
"yarn lint"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@bpmn-io/element-template-icon-renderer": "1.0.0",
|
|
40
|
+
"@camunda/form-playground": "0.22.0",
|
|
41
|
+
"@floating-ui/react-dom": "2.1.6",
|
|
42
|
+
"lodash-es": "4.17.21",
|
|
43
|
+
"prop-types": "15.8.1",
|
|
44
|
+
"styled-components": "6.1.19"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
25
47
|
"@bpmn-io/form-js": "1.x",
|
|
26
48
|
"@camunda/connectors-element-templates": "1.x",
|
|
27
49
|
"@camunda/improved-canvas": "1.x",
|
|
50
|
+
"@carbon/elements": "11.x",
|
|
51
|
+
"@carbon/icons-react": "11.x",
|
|
28
52
|
"@carbon/react": "1.x",
|
|
29
|
-
"@monaco-editor/react": "4.x",
|
|
30
|
-
"bpmn-moddle": "8.x || 9.x",
|
|
31
|
-
"camunda-bpmn-js": "3.x || 4.x || 5.x",
|
|
32
|
-
"diagram-js-grid": "1.x",
|
|
33
|
-
"diagram-js-minimap": "4.x || 5.x",
|
|
34
|
-
"lodash": "4.x",
|
|
35
|
-
"mobx": "6.x",
|
|
36
|
-
"mobx-react": "7.x || 8.x || 9.x",
|
|
37
|
-
"monaco-editor": "0.x",
|
|
38
|
-
"react": "18.x",
|
|
39
|
-
"react-dom": "18.x",
|
|
40
|
-
"styled-components": "6.x"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@bpmn-io/element-template-icon-renderer": "1.0.0",
|
|
44
|
-
"@bpmn-io/form-js": "1.17.0",
|
|
45
|
-
"@camunda/connectors-element-templates": "1.0.7",
|
|
46
|
-
"@camunda/form-playground": "0.22.0",
|
|
47
|
-
"@camunda/improved-canvas": "1.7.6",
|
|
48
|
-
"@carbon/react": "1.83.0",
|
|
49
53
|
"@eslint/js": "9.36.0",
|
|
50
|
-
"@monaco-editor/react": "4.
|
|
54
|
+
"@monaco-editor/react": "4.x",
|
|
51
55
|
"@playwright/test": "1.55.1",
|
|
52
56
|
"@semantic-release/changelog": "6.0.3",
|
|
53
57
|
"@semantic-release/git": "10.0.1",
|
|
@@ -55,30 +59,30 @@
|
|
|
55
59
|
"@testing-library/dom": "10.4.1",
|
|
56
60
|
"@testing-library/jest-dom": "6.8.0",
|
|
57
61
|
"@testing-library/react": "16.3.0",
|
|
58
|
-
"@testing-library/react-hooks": "8.0.1",
|
|
59
62
|
"@testing-library/user-event": "14.6.1",
|
|
60
63
|
"@types/bpmn-moddle": "9.0.0",
|
|
61
|
-
"@types/carbon-components-react": "7.55.13",
|
|
62
64
|
"@types/carbon__elements": "11.10.3",
|
|
65
|
+
"@types/carbon-components-react": "7.55.13",
|
|
63
66
|
"@types/jest": "30.0.0",
|
|
64
|
-
"@types/lodash": "4.17.
|
|
67
|
+
"@types/lodash-es": "4.17.12",
|
|
65
68
|
"@types/mixpanel-browser": "2.66.0",
|
|
66
69
|
"@types/node": "22.18.6",
|
|
67
70
|
"@types/prop-types": "15.7.15",
|
|
68
71
|
"@types/react": "18.3.24",
|
|
69
72
|
"@types/react-dom": "18.3.7",
|
|
70
|
-
"@types/vimeo__player": "2.18.3",
|
|
71
73
|
"@typescript-eslint/eslint-plugin": "8.44.1",
|
|
72
74
|
"@typescript-eslint/parser": "8.44.1",
|
|
73
75
|
"@vitejs/plugin-react": "4.7.0",
|
|
74
76
|
"@vitest/coverage-istanbul": "3.2.4",
|
|
75
77
|
"@vitest/ui": "3.2.4",
|
|
78
|
+
"bpmn-js": "18.7.0",
|
|
76
79
|
"bpmn-js-headless": "0.1.0",
|
|
77
|
-
"bpmn-moddle": "9.
|
|
78
|
-
"camunda-bpmn-js": "5.
|
|
80
|
+
"bpmn-moddle": "8.x || 9.x",
|
|
81
|
+
"camunda-bpmn-js": "3.x || 4.x || 5.x",
|
|
79
82
|
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
80
|
-
"diagram-js
|
|
81
|
-
"diagram-js-
|
|
83
|
+
"diagram-js": "15.4.0",
|
|
84
|
+
"diagram-js-grid": "1.x",
|
|
85
|
+
"diagram-js-minimap": "4.x || 5.x",
|
|
82
86
|
"dotenv": "17.2.2",
|
|
83
87
|
"eslint": "9.36.0",
|
|
84
88
|
"eslint-config-prettier": "10.1.8",
|
|
@@ -89,48 +93,46 @@
|
|
|
89
93
|
"eslint-plugin-testing-library": "7.10.0",
|
|
90
94
|
"globals": "16.4.0",
|
|
91
95
|
"jsdom": "27.0.0",
|
|
92
|
-
"lodash": "4.17.21",
|
|
93
96
|
"mixpanel-browser": "2.70.0",
|
|
94
|
-
"mobx": "6.
|
|
95
|
-
"mobx-react": "9.
|
|
96
|
-
"monaco-editor": "0.
|
|
97
|
+
"mobx": "6.x",
|
|
98
|
+
"mobx-react": "7.x || 8.x || 9.x",
|
|
99
|
+
"monaco-editor": "0.x",
|
|
97
100
|
"prettier": "3.6.2",
|
|
98
|
-
"
|
|
99
|
-
"react": "18.
|
|
100
|
-
"react-dom": "18.3.1",
|
|
101
|
+
"react": "18.x",
|
|
102
|
+
"react-dom": "18.x",
|
|
101
103
|
"react-router-dom": "7.9.3",
|
|
102
104
|
"sass": "1.93.2",
|
|
103
|
-
"source-map-explorer": "2.5.3",
|
|
104
|
-
"styled-components": "6.1.19",
|
|
105
|
+
"source-map-explorer": "^2.5.3",
|
|
105
106
|
"ts-toolbelt": "9.6.0",
|
|
106
107
|
"tsc-watch": "7.2.0",
|
|
107
108
|
"typescript": "5.9.2",
|
|
108
109
|
"typescript-eslint": "8.44.1",
|
|
109
110
|
"vite": "7.1.7",
|
|
111
|
+
"vite-plugin-externalize-deps": "^0.10.0",
|
|
110
112
|
"vite-plugin-svgr": "4.5.0",
|
|
111
113
|
"vite-svg-loader": "5.1.0",
|
|
112
114
|
"vite-tsconfig-paths": "5.1.4",
|
|
113
115
|
"vitest": "3.2.4"
|
|
114
116
|
},
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
117
|
+
"peerDependencies": {
|
|
118
|
+
"@bpmn-io/form-js": "1.x",
|
|
119
|
+
"@camunda/connectors-element-templates": "1.x",
|
|
120
|
+
"@camunda/improved-canvas": "1.x",
|
|
121
|
+
"@carbon/elements": "11.x",
|
|
122
|
+
"@carbon/icons-react": "11.x",
|
|
123
|
+
"@carbon/react": "1.x",
|
|
124
|
+
"@monaco-editor/react": "4.x",
|
|
125
|
+
"bpmn-js": "18.x",
|
|
126
|
+
"bpmn-moddle": "8.x || 9.x",
|
|
127
|
+
"camunda-bpmn-js": "3.x || 4.x || 5.x",
|
|
128
|
+
"diagram-js": "15.x",
|
|
129
|
+
"diagram-js-grid": "1.x",
|
|
130
|
+
"diagram-js-minimap": "4.x || 5.x",
|
|
131
|
+
"mobx": "6.x",
|
|
132
|
+
"mobx-react": "7.x || 8.x || 9.x",
|
|
133
|
+
"monaco-editor": "0.x",
|
|
134
|
+
"react": "18.x",
|
|
135
|
+
"react-dom": "18.x"
|
|
122
136
|
},
|
|
123
|
-
"
|
|
124
|
-
"main": "./build/play.js",
|
|
125
|
-
"files": [
|
|
126
|
-
"/build"
|
|
127
|
-
],
|
|
128
|
-
"author": "Camunda",
|
|
129
|
-
"license": "Apache-2.0",
|
|
130
|
-
"packageManager": "yarn@1.22.22",
|
|
131
|
-
"dependencies": {
|
|
132
|
-
"@carbon/elements": "11.70.0",
|
|
133
|
-
"@floating-ui/react-dom": "2.1.6",
|
|
134
|
-
"@vimeo/player": "2.29.7"
|
|
135
|
-
}
|
|
137
|
+
"packageManager": "yarn@1.22.22"
|
|
136
138
|
}
|