@syhr/sy-graph 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/package.json ADDED
@@ -0,0 +1,168 @@
1
+ {
2
+ "name": "@syhr/sy-graph",
3
+ "version": "1.0.0",
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.umd.js",
9
+ "module": "./lib/sy-graph.es.js",
10
+ "types": "./lib/types/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./lib/types/index.d.ts",
14
+ "import": "./lib/sy-graph.es.js",
15
+ "require": "./lib/sy-graph.umd.js"
16
+ },
17
+ "./lib/sy-graph.cjs": {
18
+ "types": "./lib/types/index.d.ts",
19
+ "require": "./lib/sy-graph.cjs"
20
+ },
21
+ "./style": "./lib/sy-graph.css"
22
+ },
23
+ "homepage": "https://github.com/syhr/sy-graph",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/syhr/sy-graph.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/syhr/sy-graph/issues"
30
+ },
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "dev:qiankun": "vite --mode qiankun",
34
+ "dev:microapp": "vite --mode microapp",
35
+ "build": "vite build",
36
+ "build:lib": "vite build --config vite.config.lib.js",
37
+ "build:qiankun": "vite build --mode qiankun",
38
+ "build:microapp": "vite build --mode microapp",
39
+ "preview": "vite preview",
40
+ "preview:lib": "vite preview --config vite.config.lib.js",
41
+ "lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
42
+ "lint:check": "eslint --ext .js,.vue,.ts --ignore-path .gitignore src",
43
+ "clean": "rimraf lib dist node_modules/.vite",
44
+ "clean:lib": "rimraf lib",
45
+ "clean:dist": "rimraf dist",
46
+ "release": "standard-version && npm publish",
47
+ "release:major": "standard-version -r major && npm publish",
48
+ "release:minor": "standard-version -r minor && npm publish",
49
+ "release:patch": "standard-version -r patch && npm publish",
50
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && yarn changelog:replace",
51
+ "changelog:rebuild": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && yarn changelog:replace",
52
+ "changelog:replace": "replace 'https://github.com/nikonee/sy-graph/commit/' '' CHANGELOG.md"
53
+ },
54
+ "dependencies": {
55
+ "@element-plus/icons-vue": "~2.3.2",
56
+ "@ffmpeg/ffmpeg": "~0.12.15",
57
+ "@ffmpeg/util": "~0.12.2",
58
+ "@meta2d/activity-diagram": "~1.0.1",
59
+ "@meta2d/chart-diagram": "~1.0.14",
60
+ "@meta2d/class-diagram": "~1.0.2",
61
+ "@meta2d/core": "~1.0.92",
62
+ "@meta2d/flow-diagram": "~1.0.2",
63
+ "@meta2d/form-diagram": "~1.0.28",
64
+ "@meta2d/fta-diagram": "~1.0.1",
65
+ "@meta2d/le5le-charts": "~1.0.5",
66
+ "@meta2d/plugin-mind-collapse": "~1.0.1",
67
+ "@meta2d/plugin-mind-core": "~1.0.4",
68
+ "@meta2d/sequence-diagram": "~1.0.1",
69
+ "@meta2d/svg": "~1.0.7",
70
+ "@meta2d/utils": "~1.0.1",
71
+ "@micro-zoe/micro-app": "1.0.0-rc.26",
72
+ "axios": "~1.11.0",
73
+ "comlink": "~4.4.2",
74
+ "crypto-js": "~4.2.0",
75
+ "dayjs": "~1.11.13",
76
+ "dxf": "~5.2.0",
77
+ "dxf-json": "~0.4.0",
78
+ "dxf-parser": "~1.1.2",
79
+ "element-plus": "~2.10.7",
80
+ "fabric": "~4.6.0",
81
+ "file-saver": "~2.0.5",
82
+ "gm-crypto": "~0.1.12",
83
+ "jszip": "~3.10.1",
84
+ "lodash-es": "~4.17.21",
85
+ "mitt": "~3.0.1",
86
+ "monaco-editor": "~0.43.0",
87
+ "nprogress": "~0.2.0",
88
+ "photoswipe": "~5.4.4",
89
+ "pinia": "~2.2.6",
90
+ "qiankun": "~2.10.16",
91
+ "qrcode.vue": "~3.6.0",
92
+ "qs": "~6.14.0",
93
+ "sm-crypto": "~0.3.13",
94
+ "vue": "~3.5.18",
95
+ "vue-clipboard3": "~2.0.0",
96
+ "vue-draggable-plus": "~0.6.0",
97
+ "vue-router": "~4.5.1",
98
+ "vue3-colorpicker": "^2.3.0"
99
+ },
100
+ "devDependencies": {
101
+ "@babel/core": "~7.28.0",
102
+ "@babel/eslint-parser": "~7.28.0",
103
+ "@iconify-json/ant-design": "~1.2.5",
104
+ "@iconify-json/ep": "~1.2.2",
105
+ "@iconify-json/tdesign": "~1.2.8",
106
+ "@iconify/json": "~2.2.371",
107
+ "@iconify/utils": "~2.3.0",
108
+ "@unocss/preset-rem-to-px": "~66.3.3",
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
+ "rimraf": "~5.0.5",
125
+ "sass": "~1.79.6",
126
+ "standard-version": "~9.5.0",
127
+ "terser": "~5.43.0",
128
+ "unocss": "~66.3.3",
129
+ "unplugin-auto-import": "~19.3.0",
130
+ "unplugin-element-plus": "~0.10.0",
131
+ "unplugin-vue-components": "~28.8.0",
132
+ "unplugin-vue-macros": "~2.14.5",
133
+ "vite": "~5.4.19",
134
+ "vite-plugin-eslint": "~1.8.1",
135
+ "vite-plugin-prettier": "~0.0.6",
136
+ "vite-plugin-qiankun": "~1.0.15",
137
+ "vue-tsc": "~2.2.10"
138
+ },
139
+ "files": [
140
+ "lib",
141
+ "README.md",
142
+ "CHANGELOG.md",
143
+ "package.json"
144
+ ],
145
+ "keywords": [
146
+ "vue3",
147
+ "meta2d",
148
+ "sy-graph"
149
+ ],
150
+ "browserslist": [
151
+ "> 1%",
152
+ "last 2 versions",
153
+ "not dead"
154
+ ],
155
+ "publishConfig": {
156
+ "access": "public",
157
+ "registry": "https://registry.npmjs.org/",
158
+ "registry_nexus": "http://10.17.196.142:8081/#browse/browse:sieyuan_npm_hosted"
159
+ },
160
+ "standard-version": {
161
+ "skip": {
162
+ "tag": true
163
+ },
164
+ "scripts": {
165
+ "postchangelog": "replace 'https://github.com/syhr/sy-graph/commit/' '' CHANGELOG.md"
166
+ }
167
+ }
168
+ }