@syhr/sy-graph 1.0.1 → 1.0.3

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/package.json CHANGED
@@ -1,180 +1,177 @@
1
- {
2
- "name": "@syhr/sy-graph",
3
- "version": "1.0.1",
4
- "author": "syhr <aiops.sieyuan@gmail.com>",
5
- "description": "Planar graphic config tool based on @meta2d.",
6
- "license": "MIT",
7
- "type": "module",
8
- "main": "./lib/sy-graph.cjs",
9
- "module": "./lib/sy-graph.mjs",
10
- "unpkg": "./lib/sy-graph.umd.js",
11
- "types": "./lib/sy-graph.d.ts",
12
- "exports": {
13
- "./package.json": "./package.json",
14
- ".": {
15
- "types": "./lib/sy-graph.d.ts",
16
- "import": "./lib/sy-graph.mjs",
17
- "require": "./lib/sy-graph.umd.js",
18
- "browser": "./lib/sy-graph.umd.js"
19
- },
20
- "./style.css": {
21
- "import": "./lib/graph.css",
22
- "require": "./lib/graph.css"
23
- },
24
- "./sy-graph.cjs": {
25
- "types": "./lib/sy-graph.d.ts",
26
- "require": "./lib/sy-graph.cjs"
27
- }
28
- },
29
- "homepage": "https://github.com/syhr/sy-graph",
30
- "repository": {
31
- "type": "git",
32
- "url": "https://github.com/syhr/sy-graph.git"
33
- },
34
- "scripts": {
35
- "dev": "vite",
36
- "dev:qiankun": "vite --mode qiankun",
37
- "dev:microapp": "vite --mode microapp",
38
- "build": "vite build",
39
- "build:lib": "vite build --config vite.config.lib.js",
40
- "build:qiankun": "vite build --mode qiankun",
41
- "build:microapp": "vite build --mode microapp",
42
- "preview": "vite preview",
43
- "preview:lib": "vite preview --config vite.config.lib.js",
44
- "lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
45
- "lint:check": "eslint --ext .js,.vue,.ts --ignore-path .gitignore src",
46
- "clean": "rimraf lib dist node_modules/.vite",
47
- "clean:lib": "rimraf lib",
48
- "clean:dist": "rimraf dist",
49
- "release": "standard-version && npm publish",
50
- "release:major": "standard-version -r major && npm publish",
51
- "release:minor": "standard-version -r minor && npm publish",
52
- "release:patch": "standard-version -r patch && npm publish",
53
- "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && yarn changelog:replace",
54
- "changelog:rebuild": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && yarn changelog:replace",
55
- "changelog:replace": "replace 'https://github.com/nikonee/sy-graph/commit/' '' CHANGELOG.md"
56
- },
57
- "dependencies": {
58
- "@element-plus/icons-vue": "~2.3.2",
59
- "@ffmpeg/ffmpeg": "~0.12.15",
60
- "@ffmpeg/util": "~0.12.2",
61
- "@meta2d/activity-diagram": "~1.0.1",
62
- "@meta2d/chart-diagram": "~1.0.14",
63
- "@meta2d/class-diagram": "~1.0.2",
64
- "@meta2d/core": "~1.0.92",
65
- "@meta2d/flow-diagram": "~1.0.2",
66
- "@meta2d/form-diagram": "~1.0.28",
67
- "@meta2d/fta-diagram": "~1.0.1",
68
- "@meta2d/le5le-charts": "~1.0.5",
69
- "@meta2d/plugin-mind-collapse": "~1.0.1",
70
- "@meta2d/plugin-mind-core": "~1.0.4",
71
- "@meta2d/sequence-diagram": "~1.0.1",
72
- "@meta2d/svg": "~1.0.7",
73
- "@meta2d/utils": "~1.0.1",
74
- "@micro-zoe/micro-app": "1.0.0-rc.26",
75
- "axios": "~1.11.0",
76
- "comlink": "~4.4.2",
77
- "crypto-js": "~4.2.0",
78
- "dayjs": "~1.11.13",
79
- "dxf": "~5.2.0",
80
- "dxf-json": "~0.4.0",
81
- "dxf-parser": "~1.1.2",
82
- "element-plus": "~2.10.7",
83
- "fabric": "~4.6.0",
84
- "file-saver": "~2.0.5",
85
- "gm-crypto": "~0.1.12",
86
- "jszip": "~3.10.1",
87
- "lodash-es": "~4.17.21",
88
- "mitt": "~3.0.1",
89
- "monaco-editor": "~0.43.0",
90
- "nprogress": "~0.2.0",
91
- "photoswipe": "~5.4.4",
92
- "pinia": "~2.2.6",
93
- "qiankun": "~2.10.16",
94
- "qrcode.vue": "~3.6.0",
95
- "qs": "~6.14.0",
96
- "sm-crypto": "~0.3.13",
97
- "vue": "~3.5.18",
98
- "vue-clipboard3": "~2.0.0",
99
- "vue-draggable-plus": "~0.6.0",
100
- "vue-router": "~4.5.1",
101
- "vue3-colorpicker": "^2.3.0"
102
- },
103
- "devDependencies": {
104
- "@babel/core": "~7.28.0",
105
- "@babel/eslint-parser": "~7.28.0",
106
- "@iconify-json/ant-design": "~1.2.5",
107
- "@iconify-json/ep": "~1.2.2",
108
- "@iconify-json/tdesign": "~1.2.8",
109
- "@iconify/json": "~2.2.371",
110
- "@iconify/utils": "~2.3.0",
111
- "@unocss/preset-rem-to-px": "~66.3.3",
112
- "@vitejs/plugin-basic-ssl": "~2.1.0",
113
- "@vitejs/plugin-vue": "~5.2.4",
114
- "@vitejs/plugin-vue-jsx": "~4.2.0",
115
- "@vue/eslint-config-prettier": "~8.0.0",
116
- "autoprefixer": "~10.4.21",
117
- "conventional-changelog-cli": "~5.0.0",
118
- "dotenv": "~16.5.0",
119
- "eslint": "~8.50.0",
120
- "eslint-config-prettier": "~9.0.0",
121
- "eslint-plugin-prettier": "~5.5.4",
122
- "eslint-plugin-vue": "~9.32.0",
123
- "glob": "~11.0.3",
124
- "picocolors": "~1.1.1",
125
- "postcss": "~8.5.6",
126
- "postcss-px-to-viewport-8-plugin": "~1.2.5",
127
- "rimraf": "~5.0.5",
128
- "sass": "~1.79.6",
129
- "standard-version": "~9.5.0",
130
- "terser": "~5.43.0",
131
- "unocss": "~66.3.3",
132
- "unplugin-auto-import": "~19.3.0",
133
- "unplugin-element-plus": "~0.10.0",
134
- "unplugin-vue-components": "~28.8.0",
135
- "unplugin-vue-macros": "~2.14.5",
136
- "vite": "~5.4.19",
137
- "vite-plugin-eslint": "~1.8.1",
138
- "vite-plugin-lib-inject-css": "~2.2.2",
139
- "vite-plugin-prettier": "~0.0.6",
140
- "vite-plugin-qiankun": "~1.0.15",
141
- "vue-tsc": "~2.2.10"
142
- },
143
- "peerDependencies": {
144
- "element-plus": "~2.10.7",
145
- "vue": "~3.5.18"
146
- },
147
- "files": [
148
- "lib",
149
- "package.json",
150
- "CHANGELOG.md",
151
- "README.md"
152
- ],
153
- "keywords": [
154
- "vue3",
155
- "meta2d",
156
- "graph",
157
- "canvas",
158
- "editor",
159
- "diagram",
160
- "sy-graph"
161
- ],
162
- "browserslist": [
163
- "> 1%",
164
- "last 2 versions",
165
- "not dead"
166
- ],
167
- "publishConfig": {
168
- "access": "public",
169
- "registry": "https://registry.npmjs.org/",
170
- "registry_nexus": "http://10.17.196.142:8081/#browse/browse:sieyuan_npm_hosted"
171
- },
172
- "standard-version": {
173
- "skip": {
174
- "tag": true
175
- },
176
- "scripts": {
177
- "postchangelog": "replace 'https://github.com/syhr/sy-graph/commit/' '' CHANGELOG.md"
178
- }
179
- }
180
- }
1
+ {
2
+ "name": "@syhr/sy-graph",
3
+ "version": "1.0.3",
4
+ "author": "syhr <aiops.sieyuan@gmail.com>",
5
+ "description": "Planar graphic config tool based on @meta2d.",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./lib/sy-graph.cjs",
9
+ "module": "./lib/sy-graph.mjs",
10
+ "unpkg": "./lib/sy-graph.umd.js",
11
+ "types": "./lib/sy-graph.d.ts",
12
+ "exports": {
13
+ "./package.json": "./package.json",
14
+ ".": {
15
+ "types": "./lib/sy-graph.d.ts",
16
+ "import": "./lib/sy-graph.mjs",
17
+ "require": "./lib/sy-graph.umd.js",
18
+ "browser": "./lib/sy-graph.umd.js"
19
+ },
20
+ "./style.css": {
21
+ "import": "./lib/graph.css",
22
+ "require": "./lib/graph.css"
23
+ },
24
+ "./sy-graph.cjs": {
25
+ "types": "./lib/sy-graph.d.ts",
26
+ "require": "./lib/sy-graph.cjs"
27
+ }
28
+ },
29
+ "homepage": "https://github.com/syhr/sy-graph",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/syhr/sy-graph.git"
33
+ },
34
+ "scripts": {
35
+ "dev": "vite",
36
+ "dev:qiankun": "vite --mode qiankun",
37
+ "dev:microapp": "vite --mode microapp",
38
+ "build": "vite build",
39
+ "build:lib": "vite build --config vite.config.lib.js",
40
+ "build:qiankun": "vite build --mode qiankun",
41
+ "build:microapp": "vite build --mode microapp",
42
+ "preview": "vite preview",
43
+ "preview:lib": "vite preview --config vite.config.lib.js",
44
+ "lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
45
+ "lint:check": "eslint --ext .js,.vue,.ts --ignore-path .gitignore src",
46
+ "clean": "rimraf lib dist node_modules/.vite",
47
+ "clean:lib": "rimraf lib",
48
+ "clean:dist": "rimraf dist",
49
+ "release:first": "standard-version -f && pnpm changelog:replace",
50
+ "release:major": "standard-version -r major && pnpm changelog:replace",
51
+ "release:minor": "standard-version -r minor && pnpm changelog:replace",
52
+ "release:patch": "standard-version -r patch && pnpm changelog:replace",
53
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && pnpm changelog:replace",
54
+ "changelog:rebuild": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && pnpm changelog:replace",
55
+ "changelog:replace": "replace 'https://10.17.196.142:10022/hmi-dev/cbb/cockpit-editor/commit/' '' CHANGELOG.md"
56
+ },
57
+ "dependencies": {
58
+ "@element-plus/icons-vue": "~2.3.2",
59
+ "@ffmpeg/ffmpeg": "~0.12.15",
60
+ "@ffmpeg/util": "~0.12.2",
61
+ "@meta2d/activity-diagram": "~1.0.1",
62
+ "@meta2d/chart-diagram": "~1.0.16",
63
+ "@meta2d/class-diagram": "~1.0.2",
64
+ "@meta2d/core": "~1.0.97",
65
+ "@meta2d/flow-diagram": "~1.0.2",
66
+ "@meta2d/form-diagram": "~1.0.29",
67
+ "@meta2d/fta-diagram": "~1.0.1",
68
+ "@meta2d/le5le-charts": "~1.0.5",
69
+ "@meta2d/plugin-mind-collapse": "~1.0.1",
70
+ "@meta2d/plugin-mind-core": "~1.0.4",
71
+ "@meta2d/sequence-diagram": "~1.0.1",
72
+ "@meta2d/svg": "~1.0.7",
73
+ "@meta2d/utils": "1.0.1",
74
+ "@micro-zoe/micro-app": "1.0.0-rc.26",
75
+ "@syhr/sy-player": "~3.2.3",
76
+ "axios": "~1.11.0",
77
+ "comlink": "~4.4.2",
78
+ "crypto-js": "~4.2.0",
79
+ "dayjs": "~1.11.18",
80
+ "dxf": "~5.2.0",
81
+ "dxf-parser": "~1.1.2",
82
+ "element-plus": "~2.10.7",
83
+ "fabric": "~4.6.0",
84
+ "file-saver": "~2.0.5",
85
+ "flv.js": "^1.6.2",
86
+ "gm-crypto": "~0.1.12",
87
+ "jszip": "~3.10.1",
88
+ "lodash-es": "~4.17.21",
89
+ "mitt": "~3.0.1",
90
+ "monaco-editor": "~0.43.0",
91
+ "nprogress": "~0.2.0",
92
+ "photoswipe": "~5.4.4",
93
+ "pinia": "~2.2.6",
94
+ "qs": "~6.14.0",
95
+ "sm-crypto": "~0.3.13",
96
+ "vue": "~3.5.22",
97
+ "vue-draggable-plus": "~0.6.0",
98
+ "vue-router": "~4.5.1",
99
+ "vue3-colorpicker": "^2.3.0"
100
+ },
101
+ "devDependencies": {
102
+ "@babel/core": "~7.28.5",
103
+ "@babel/eslint-parser": "~7.28.5",
104
+ "@iconify-json/ant-design": "~1.2.5",
105
+ "@iconify-json/ep": "~1.2.2",
106
+ "@iconify-json/tdesign": "~1.2.10",
107
+ "@iconify/utils": "~2.3.0",
108
+ "@unocss/preset-rem-to-px": "~66.5.4",
109
+ "@vitejs/plugin-basic-ssl": "~2.1.0",
110
+ "@vitejs/plugin-vue": "~5.2.4",
111
+ "@vitejs/plugin-vue-jsx": "~4.2.0",
112
+ "@vue/eslint-config-prettier": "~8.0.0",
113
+ "autoprefixer": "~10.4.21",
114
+ "conventional-changelog-cli": "~5.0.0",
115
+ "dotenv": "~16.5.0",
116
+ "eslint": "~8.50.0",
117
+ "eslint-config-prettier": "~9.0.0",
118
+ "eslint-plugin-prettier": "~5.5.4",
119
+ "eslint-plugin-vue": "~9.32.0",
120
+ "glob": "~11.0.3",
121
+ "picocolors": "~1.1.1",
122
+ "postcss": "~8.5.6",
123
+ "postcss-px-to-viewport-8-plugin": "~1.2.5",
124
+ "replace": "~1.2.2",
125
+ "rimraf": "~5.0.5",
126
+ "sass": "~1.79.6",
127
+ "standard-version": "~9.5.0",
128
+ "terser": "~5.44.0",
129
+ "unocss": "~66.5.4",
130
+ "unplugin-auto-import": "~19.3.0",
131
+ "unplugin-element-plus": "~0.10.0",
132
+ "unplugin-vue-components": "~28.8.0",
133
+ "unplugin-vue-macros": "~2.14.5",
134
+ "vite": "~5.4.20",
135
+ "vite-plugin-css-injected-by-js": "~3.5.2",
136
+ "vite-plugin-eslint": "~1.8.1",
137
+ "vite-plugin-lib-inject-css": "~2.2.2",
138
+ "vite-plugin-qiankun": "~1.0.15"
139
+ },
140
+ "peerDependencies": {
141
+ "element-plus": "~2.10.7",
142
+ "vue": "~3.5.18"
143
+ },
144
+ "files": [
145
+ "lib",
146
+ "package.json",
147
+ "CHANGELOG.md",
148
+ "README.md"
149
+ ],
150
+ "keywords": [
151
+ "vue3",
152
+ "meta2d",
153
+ "graph",
154
+ "canvas",
155
+ "editor",
156
+ "diagram",
157
+ "sy-graph"
158
+ ],
159
+ "browserslist": [
160
+ "> 1%",
161
+ "last 2 versions",
162
+ "not dead"
163
+ ],
164
+ "publishConfig": {
165
+ "access": "public",
166
+ "registry": "https://registry.npmjs.org/",
167
+ "registry_nexus": "http://10.17.196.142:8081/#browse/browse:sieyuan_npm_hosted"
168
+ },
169
+ "standard-version": {
170
+ "skip": {
171
+ "tag": true
172
+ },
173
+ "scripts": {
174
+ "postchangelog": "replace 'https://github.com/syhr/sy-graph/commit/' '' CHANGELOG.md"
175
+ }
176
+ }
177
+ }