@syhr/sy-graph 1.0.0 → 1.0.1
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 +186 -23
- package/lib/sy-graph.cjs +1 -1
- package/lib/{sy-graph.es.js → sy-graph.mjs} +1 -1
- package/lib/sy-graph.umd.js +13 -12
- package/package.json +29 -17
- /package/lib/{style.css → graph.css} +0 -0
package/package.json
CHANGED
|
@@ -1,33 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syhr/sy-graph",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": "syhr <aiops.sieyuan@gmail.com>",
|
|
5
5
|
"description": "Planar graphic config tool based on @meta2d.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"main": "./lib/sy-graph.
|
|
9
|
-
"module": "./lib/sy-graph.
|
|
10
|
-
"
|
|
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",
|
|
11
12
|
"exports": {
|
|
13
|
+
"./package.json": "./package.json",
|
|
12
14
|
".": {
|
|
13
|
-
"types": "./lib/
|
|
14
|
-
"import": "./lib/sy-graph.
|
|
15
|
-
"require": "./lib/sy-graph.umd.js"
|
|
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"
|
|
16
19
|
},
|
|
17
|
-
"./
|
|
18
|
-
"
|
|
19
|
-
"require": "./lib/
|
|
20
|
+
"./style.css": {
|
|
21
|
+
"import": "./lib/graph.css",
|
|
22
|
+
"require": "./lib/graph.css"
|
|
20
23
|
},
|
|
21
|
-
"./
|
|
24
|
+
"./sy-graph.cjs": {
|
|
25
|
+
"types": "./lib/sy-graph.d.ts",
|
|
26
|
+
"require": "./lib/sy-graph.cjs"
|
|
27
|
+
}
|
|
22
28
|
},
|
|
23
29
|
"homepage": "https://github.com/syhr/sy-graph",
|
|
24
30
|
"repository": {
|
|
25
31
|
"type": "git",
|
|
26
32
|
"url": "https://github.com/syhr/sy-graph.git"
|
|
27
33
|
},
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/syhr/sy-graph/issues"
|
|
30
|
-
},
|
|
31
34
|
"scripts": {
|
|
32
35
|
"dev": "vite",
|
|
33
36
|
"dev:qiankun": "vite --mode qiankun",
|
|
@@ -132,19 +135,28 @@
|
|
|
132
135
|
"unplugin-vue-macros": "~2.14.5",
|
|
133
136
|
"vite": "~5.4.19",
|
|
134
137
|
"vite-plugin-eslint": "~1.8.1",
|
|
138
|
+
"vite-plugin-lib-inject-css": "~2.2.2",
|
|
135
139
|
"vite-plugin-prettier": "~0.0.6",
|
|
136
140
|
"vite-plugin-qiankun": "~1.0.15",
|
|
137
141
|
"vue-tsc": "~2.2.10"
|
|
138
142
|
},
|
|
143
|
+
"peerDependencies": {
|
|
144
|
+
"element-plus": "~2.10.7",
|
|
145
|
+
"vue": "~3.5.18"
|
|
146
|
+
},
|
|
139
147
|
"files": [
|
|
140
148
|
"lib",
|
|
141
|
-
"
|
|
149
|
+
"package.json",
|
|
142
150
|
"CHANGELOG.md",
|
|
143
|
-
"
|
|
151
|
+
"README.md"
|
|
144
152
|
],
|
|
145
153
|
"keywords": [
|
|
146
154
|
"vue3",
|
|
147
155
|
"meta2d",
|
|
156
|
+
"graph",
|
|
157
|
+
"canvas",
|
|
158
|
+
"editor",
|
|
159
|
+
"diagram",
|
|
148
160
|
"sy-graph"
|
|
149
161
|
],
|
|
150
162
|
"browserslist": [
|
|
@@ -165,4 +177,4 @@
|
|
|
165
177
|
"postchangelog": "replace 'https://github.com/syhr/sy-graph/commit/' '' CHANGELOG.md"
|
|
166
178
|
}
|
|
167
179
|
}
|
|
168
|
-
}
|
|
180
|
+
}
|
|
File without changes
|