@camunda/play 0.0.3 → 0.0.5
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 +201 -0
- package/build/{play.mjs → play.js} +5239 -5311
- package/package.json +32 -8
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/play",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"scripts": {
|
|
5
6
|
"start": "vite",
|
|
6
7
|
"build": "tsc && vite build",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
8
|
+
"eslint": "eslint .",
|
|
9
|
+
"lint": "yarn tsc && yarn eslint",
|
|
10
|
+
"analyze-bundle": "yarn build && source-map-explorer build/* --no-border-checks",
|
|
11
|
+
"test": "vitest",
|
|
12
|
+
"coverage": "yarn test run --coverage --changed",
|
|
13
|
+
"fix:prettier": "prettier --write \"**/*.{ts,tsx}\""
|
|
9
14
|
},
|
|
10
15
|
"peerDependencies": {
|
|
11
16
|
"@bpmn-io/form-js": "1.x",
|
|
@@ -13,7 +18,6 @@
|
|
|
13
18
|
"bpmn-js": "16.x",
|
|
14
19
|
"bpmn-moddle": "8.x",
|
|
15
20
|
"lodash": "4.x",
|
|
16
|
-
"prop-types": "15.x",
|
|
17
21
|
"react": "18.x",
|
|
18
22
|
"react-dom": "18.x",
|
|
19
23
|
"react-router-dom": "5.x || 6.x",
|
|
@@ -22,6 +26,10 @@
|
|
|
22
26
|
"devDependencies": {
|
|
23
27
|
"@bpmn-io/form-js": "1.6.1",
|
|
24
28
|
"@carbon/react": "1.46.1",
|
|
29
|
+
"@testing-library/jest-dom": "6.2.0",
|
|
30
|
+
"@testing-library/react": "14.1.2",
|
|
31
|
+
"@testing-library/react-hooks": "8.0.1",
|
|
32
|
+
"@testing-library/user-event": "14.5.2",
|
|
25
33
|
"@types/bpmn-moddle": "5.1.10",
|
|
26
34
|
"@types/carbon-components-react": "7.55.9",
|
|
27
35
|
"@types/lodash": "4.14.202",
|
|
@@ -33,14 +41,21 @@
|
|
|
33
41
|
"@typescript-eslint/eslint-plugin": "6.13.2",
|
|
34
42
|
"@typescript-eslint/parser": "6.13.2",
|
|
35
43
|
"@vitejs/plugin-react": "4.2.1",
|
|
44
|
+
"@vitest/coverage-istanbul": "1.1.3",
|
|
45
|
+
"@vitest/ui": "1.1.3",
|
|
36
46
|
"bpmn-js": "16.2.0",
|
|
37
47
|
"bpmn-moddle": "8.1.0",
|
|
38
48
|
"eslint": "8.55.0",
|
|
49
|
+
"eslint-config-prettier": "9.1.0",
|
|
50
|
+
"eslint-plugin-camunda-licensed": "0.4.6",
|
|
51
|
+
"eslint-plugin-prettier": "5.1.2",
|
|
39
52
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
40
53
|
"eslint-plugin-react-refresh": "0.4.5",
|
|
54
|
+
"eslint-plugin-testing-library": "6.2.0",
|
|
55
|
+
"jsdom": "23.0.1",
|
|
41
56
|
"lodash": "4.17.21",
|
|
42
57
|
"mixpanel-browser": "2.48.1",
|
|
43
|
-
"
|
|
58
|
+
"prettier": "3.1.1",
|
|
44
59
|
"prop-types": "15.8.1",
|
|
45
60
|
"react": "18.2.0",
|
|
46
61
|
"react-dom": "18.2.0",
|
|
@@ -49,13 +64,22 @@
|
|
|
49
64
|
"source-map-explorer": "2.5.3",
|
|
50
65
|
"styled-components": "6.1.1",
|
|
51
66
|
"typescript": "5.3.2",
|
|
52
|
-
"vite": "5.0.
|
|
67
|
+
"vite": "5.0.9",
|
|
53
68
|
"vite-plugin-svgr": "4.2.0",
|
|
54
69
|
"vite-svg-loader": "5.1.0",
|
|
55
|
-
"vite-tsconfig-paths": "4.2.
|
|
70
|
+
"vite-tsconfig-paths": "4.2.3",
|
|
71
|
+
"vitest": "1.1.3"
|
|
72
|
+
},
|
|
73
|
+
"lint-staged": {
|
|
74
|
+
"*": [
|
|
75
|
+
"prettier --write"
|
|
76
|
+
],
|
|
77
|
+
"*.{js,jsx,ts,tsx}": [
|
|
78
|
+
"yarn lint"
|
|
79
|
+
]
|
|
56
80
|
},
|
|
57
81
|
"description": "Camunda Play",
|
|
58
|
-
"main": "./build/play.
|
|
82
|
+
"main": "./build/play.js",
|
|
59
83
|
"files": [
|
|
60
84
|
"/build"
|
|
61
85
|
],
|