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
| {
| "name": "@jnpf/bpmn",
| "version": "1.1.0",
| "description": "JNPF快速开发平台bpmn组件",
| "keywords": [
| "vue",
| "bpmn",
| "@jnpf/bpmn",
| "jnpf",
| "jnpfsoft",
| "福建引迈信息技术有限公司"
| ],
| "author": {
| "name": "福建引迈信息技术有限公司",
| "email": "support@yinmaisoft.com",
| "url": "https://www.jnpfsoft.com"
| },
| "type": "module",
| "scripts": {
| "serve": "vite",
| "build": "vue-tsc -b && vite build"
| },
| "files": [
| "dist",
| "lib/**/*.d.ts",
| "lib/**/*.js"
| ],
| "main": "./dist/index.umd.cjs",
| "module": "./dist/index.js",
| "exports": {
| ".": {
| "types": "./src/components/bpmn/index.ts",
| "development": "./src/components/bpmn/index.ts",
| "default": "./dist/index.umd.cjs"
| },
| "./style": {
| "development": "./src/components/bpmn/src/style/index.scss",
| "default": "./dist/style.css"
| },
| "./config": {
| "types": "./lib/config/index.js",
| "development": "./lib/config/index.ts",
| "default": "./lib/config/index.js"
| },
| "./utils": {
| "types": "./lib/utils/index.ts",
| "development": "./lib/utils/index.ts",
| "default": "./lib/utils/index.js"
| }
| },
| "publishConfig": {
| "access": "public"
| },
| "dependencies": {
| "@ant-design/icons-vue": "^7.0.1",
| "ant-design-vue": "^4.2.6",
| "bpmn-js": "16.3.2",
| "bpmn-js-properties-panel": "5.7.0",
| "camunda-bpmn-moddle": "6.1.2",
| "diagram-js": "11.9.1",
| "diagram-js-minimap": "4.1.0",
| "inherits-browser": "^0.1.0",
| "lodash-es": "^4.17.21",
| "min-dash": "^4.2.3",
| "min-dom": "^4.2.1",
| "tiny-svg": "^3.1.3",
| "vue": "^3.5.17"
| },
| "devDependencies": {
| "@types/node": "^22.16.3",
| "@vitejs/plugin-vue": "^5.2.4",
| "sass": "^1.89.2",
| "terser": "^5.43.1",
| "typescript": "^5.8.3",
| "vite": "^5.4.19",
| "vue-tsc": "^2.2.12"
| }
| }
|
|