anx-esop-engine 1.0.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/README.md +66 -0
- package/dist/BpmnLayout-27HW6WAW.mjs +6 -0
- package/dist/chunk-ZM2PR2CO.mjs +179 -0
- package/dist/index.d.mts +233 -0
- package/dist/index.d.ts +233 -0
- package/dist/index.js +6703 -0
- package/dist/index.mjs +6502 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "anx-esop-engine",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ESOP Engine, providing BPMN to React Flow conversion and rendering capabilities. This package includes components for modeling, visualizing, and interacting with BPMN diagrams in a React application.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": ">=18",
|
|
21
|
+
"react-dom": ">=18",
|
|
22
|
+
"@xyflow/react": ">=12",
|
|
23
|
+
"@mui/material": ">=5",
|
|
24
|
+
"@mui/icons-material": ">=5",
|
|
25
|
+
"@emotion/react": ">=11",
|
|
26
|
+
"@emotion/styled": ">=11",
|
|
27
|
+
"zustand": ">=4"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/your-org/convert-bpmn-to-react-flow.git"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"bpmn",
|
|
35
|
+
"react-flow",
|
|
36
|
+
"converter",
|
|
37
|
+
"workflow"
|
|
38
|
+
],
|
|
39
|
+
"author": "",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"clean": "rimraf dist",
|
|
46
|
+
"build": "npm run clean && tsup src/index.ts --format cjs,esm --dts --outDir dist --tsconfig tsconfig.build.json",
|
|
47
|
+
"prepublishOnly": "npm run build",
|
|
48
|
+
"pack:check": "npm pack --dry-run",
|
|
49
|
+
"publish:ps1": "powershell -ExecutionPolicy Bypass -File ./scripts/publish.ps1",
|
|
50
|
+
"publish:dry": "powershell -ExecutionPolicy Bypass -File ./scripts/publish.ps1 -DryRun",
|
|
51
|
+
"verify": "tsx src/verify.ts",
|
|
52
|
+
"dev": "next dev --turbo"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@dagrejs/dagre": "^3.0.0",
|
|
56
|
+
"bpmn-moddle": "^10.0.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@emotion/react": "^11.11.4",
|
|
60
|
+
"@emotion/styled": "^11.11.4",
|
|
61
|
+
"@mui/icons-material": "^5.15.14",
|
|
62
|
+
"@mui/material": "^5.15.14",
|
|
63
|
+
"@types/node": "^20",
|
|
64
|
+
"@types/react": "^19.2.17",
|
|
65
|
+
"@types/react-dom": "^19.2.3",
|
|
66
|
+
"@xyflow/react": "^12.10.2",
|
|
67
|
+
"next": "^16.2.9",
|
|
68
|
+
"react": "^19.2.7",
|
|
69
|
+
"react-dom": "^19.2.7",
|
|
70
|
+
"rimraf": "^6.0.1",
|
|
71
|
+
"tsup": "^8.5.0",
|
|
72
|
+
"tsx": "^4.7.1",
|
|
73
|
+
"typescript": "^5",
|
|
74
|
+
"zustand": "^4.5.2"
|
|
75
|
+
},
|
|
76
|
+
"packageManager": "yarn@1.22.21+sha512.ca75da26c00327d26267ce33536e5790f18ebd53266796fbb664d2a4a5116308042dd8ee7003b276a20eace7d3c5561c3577bdd71bcb67071187af124779620a"
|
|
77
|
+
}
|