-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
113 lines (113 loc) · 3.28 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
{
"name": "@miragon/camunda-web-modeler",
"version": "0.1.1",
"description": "A browser-native BPMN and DMN modeler based on bpmn.io.",
"author": "Miragon GmbH <[email protected]>",
"homepage": "https://github.com/Miragon/camunda-web-modeler",
"repository": {
"type": "git",
"url": "git+https://github.com/Miragon/camunda-web-modeler.git"
},
"scripts": {
"clean": "rimraf dist index.js index.d.ts",
"docs": "typedoc src --exclude src/index.ts --exclude src/types --exclude src/components --exclude src/bpmnio --disableSources --out dist/docs",
"watch": "tsc -w",
"build": "tsc && tsc -p tsconfig.index.json && yarn docs && yarn bundle && copyfiles -u 1 \"src/types/*.d.ts\" dist",
"bundle": "rollup -c",
"lint": "eslint -c eslint.config.mjs ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"miragon",
"modeler",
"camunda",
"bpmnio",
"bpmn",
"dmn"
],
"license": "Apache-2.0",
"files": [
"dist/",
"index.d.ts",
"index.js"
],
"main": "index.js",
"directories": {
"lib": "dist/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@bpmn-io/element-template-chooser": "^1.0.0",
"@bpmn-io/properties-panel": "^3.24.1",
"@emotion/react": "^11.13.3",
"@monaco-editor/react": "^4.6.0",
"@seznam/compose-react-refs": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"bpmn-js": "^17.11.1",
"bpmn-js-element-templates": "^2.3.0",
"bpmn-js-properties-panel": "^5.25.0",
"camunda-bpmn-moddle": "^7.0.1",
"camunda-dmn-moddle": "^1.3.0",
"deepmerge": "^4.3.1",
"diagram-js-origin": "^1.4.0",
"dmn-js": "^16.8.1",
"dmn-js-properties-panel": "^3.5.2",
"monaco-editor": "^0.52.0",
"react-resizable-panels": "^2.1.5",
"tss-react": "^4.9.13"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/react": "^18.3.12",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"resolutions": {
"min-dash": "4.1.1"
},
"packageManager": "[email protected]"
}