@syhr/sy-threed-graph 1.0.0-bate4
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/CHANGELOG.md +717 -0
- package/README.md +226 -0
- package/lib-threed/sy-threed-graph.cjs +98 -0
- package/lib-threed/sy-threed-graph.mjs +24709 -0
- package/lib-threed/sy-threed-graph.umd.js +99 -0
- package/lib-threed/threed-graph.css +1 -0
- package/package.json +160 -0
- package/readme.text +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.threed-editor[data-v-65e621f7]{position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--sc-bg-color)}.threed-preview[data-v-a0197fe6]{width:100%;height:100%}
|
package/package.json
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@syhr/sy-threed-graph",
|
|
3
|
+
"version": "1.0.0-bate4",
|
|
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-threed/sy-threed-graph.cjs",
|
|
9
|
+
"module": "./lib-threed/sy-threed-graph.mjs",
|
|
10
|
+
"unpkg": "./lib-threed/sy-threed-graph.umd.js",
|
|
11
|
+
"types": "./lib-threed/sy-threed-graph.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
"./package.json": "./package.json",
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./lib-threed/sy-threed-graph.d.ts",
|
|
16
|
+
"import": "./lib-threed/sy-threed-graph.mjs",
|
|
17
|
+
"require": "./lib-threed/sy-threed-graph.umd.js",
|
|
18
|
+
"browser": "./lib-threed/sy-threed-graph.umd.js"
|
|
19
|
+
},
|
|
20
|
+
"./style.css": {
|
|
21
|
+
"import": "./lib-threed/threed-graph.css",
|
|
22
|
+
"require": "./lib-threed/threed-graph.css"
|
|
23
|
+
},
|
|
24
|
+
"./sy-threed-graph.cjs": {
|
|
25
|
+
"types": "./lib-threed/sy-threed-graph.d.ts",
|
|
26
|
+
"require": "./lib-threed/sy-threed-graph.cjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/syhr/sy-threed-graph",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/syhr/sy-threed-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.three.js",
|
|
40
|
+
"build:threed": "node build-threed.cjs",
|
|
41
|
+
"build:qiankun": "vite build --mode qiankun",
|
|
42
|
+
"build:microapp": "vite build --mode microapp",
|
|
43
|
+
"preview": "vite preview",
|
|
44
|
+
"preview:lib": "vite preview --config vite.config.three.js",
|
|
45
|
+
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs --fix src",
|
|
46
|
+
"release:first": "standard-version -f && pnpm changelog:replace",
|
|
47
|
+
"release:major": "standard-version -r major && pnpm changelog:replace",
|
|
48
|
+
"release:minor": "standard-version -r minor && pnpm changelog:replace",
|
|
49
|
+
"release:patch": "standard-version -r patch && pnpm changelog:replace",
|
|
50
|
+
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && pnpm changelog:replace",
|
|
51
|
+
"changelog:rebuild": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && pnpm changelog:replace",
|
|
52
|
+
"changelog:replace": "replace 'https://10.17.196.142:10022/hmi-dev/cbb/cockpit-editor/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.20",
|
|
60
|
+
"@meta2d/class-diagram": "~1.0.2",
|
|
61
|
+
"@meta2d/core": "~1.1.14",
|
|
62
|
+
"@meta2d/flow-diagram": "~1.0.2",
|
|
63
|
+
"@meta2d/form-diagram": "~1.0.29",
|
|
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.3",
|
|
71
|
+
"@micro-zoe/micro-app": "1.0.0-rc.30",
|
|
72
|
+
"axios": "~1.15.1",
|
|
73
|
+
"comlink": "~4.4.2",
|
|
74
|
+
"crypto-js": "~4.2.0",
|
|
75
|
+
"dayjs": "~1.11.19",
|
|
76
|
+
"dxf": "~5.3.1",
|
|
77
|
+
"dxf-parser": "~1.1.2",
|
|
78
|
+
"element-plus": "~2.12.0",
|
|
79
|
+
"fabric": "~4.6.0",
|
|
80
|
+
"file-saver": "~2.0.5",
|
|
81
|
+
"flv.js": "~1.6.2",
|
|
82
|
+
"gm-crypto": "~0.1.12",
|
|
83
|
+
"jszip": "~3.10.1",
|
|
84
|
+
"localforage": "~1.10.0",
|
|
85
|
+
"lodash-es": "~4.17.23",
|
|
86
|
+
"mitt": "~3.0.1",
|
|
87
|
+
"monaco-editor": "~0.55.1",
|
|
88
|
+
"nprogress": "~0.2.0",
|
|
89
|
+
"pinia": "~3.0.4",
|
|
90
|
+
"qs": "~6.15.1",
|
|
91
|
+
"sm-crypto": "~0.4.0",
|
|
92
|
+
"three": "~0.184.0",
|
|
93
|
+
"three-edit-cores": "~0.0.15",
|
|
94
|
+
"vue": "~3.5.32",
|
|
95
|
+
"vue-draggable-plus": "~0.6.1",
|
|
96
|
+
"vue-router": "~4.6.4",
|
|
97
|
+
"vue3-colorpicker": "~2.3.0"
|
|
98
|
+
},
|
|
99
|
+
"devDependencies": {
|
|
100
|
+
"@babel/core": "~7.29.0",
|
|
101
|
+
"@babel/eslint-parser": "~7.28.6",
|
|
102
|
+
"@eslint/js": "~9.39.4",
|
|
103
|
+
"@iconify-json/ant-design": "~1.2.5",
|
|
104
|
+
"@iconify-json/ep": "~1.2.4",
|
|
105
|
+
"@iconify-json/tdesign": "~1.2.12",
|
|
106
|
+
"@iconify/utils": "~3.1.0",
|
|
107
|
+
"@oxc-parser/binding-win32-x64-msvc": "~0.127.0",
|
|
108
|
+
"@unocss/preset-rem-to-px": "~66.6.8",
|
|
109
|
+
"@vitejs/plugin-basic-ssl": "~2.3.0",
|
|
110
|
+
"@vitejs/plugin-vue": "~5.2.4",
|
|
111
|
+
"@vitejs/plugin-vue-jsx": "~4.2.0",
|
|
112
|
+
"@vue/eslint-config-prettier": "~10.2.0",
|
|
113
|
+
"autoprefixer": "~10.5.0",
|
|
114
|
+
"conventional-changelog-cli": "~5.0.0",
|
|
115
|
+
"dotenv": "~16.5.0",
|
|
116
|
+
"eslint": "~9.39.4",
|
|
117
|
+
"eslint-config-prettier": "~10.1.8",
|
|
118
|
+
"eslint-plugin-prettier": "~5.5.5",
|
|
119
|
+
"eslint-plugin-vue": "~10.8.0",
|
|
120
|
+
"glob": "~13.0.6",
|
|
121
|
+
"globals": "~17.5.0",
|
|
122
|
+
"picocolors": "~1.1.1",
|
|
123
|
+
"postcss": "~8.5.10",
|
|
124
|
+
"postcss-px-to-viewport-8-plugin": "~1.2.5",
|
|
125
|
+
"replace": "~1.2.2",
|
|
126
|
+
"sass": "~1.79.6",
|
|
127
|
+
"standard-version": "~9.5.0",
|
|
128
|
+
"terser": "~5.46.1",
|
|
129
|
+
"unocss": "~66.6.8",
|
|
130
|
+
"unplugin-auto-import": "~19.3.0",
|
|
131
|
+
"unplugin-element-plus": "~0.11.2",
|
|
132
|
+
"unplugin-vue-components": "~28.8.0",
|
|
133
|
+
"unplugin-vue-macros": "~2.14.5",
|
|
134
|
+
"vite": "~5.4.21",
|
|
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": ["lib-threed", "package.json", "CHANGELOG.md", "README.md"],
|
|
145
|
+
"keywords": ["vue3", "meta2d", "graph", "canvas", "editor", "diagram", "sy-threed-graph"],
|
|
146
|
+
"browserslist": ["> 1%", "last 2 versions", "not dead"],
|
|
147
|
+
"publishConfig": {
|
|
148
|
+
"access": "public",
|
|
149
|
+
"registry": "https://registry.npmjs.org/",
|
|
150
|
+
"registry_nexus": "http://10.17.196.142:8081/#browse/browse:sieyuan_npm_hosted"
|
|
151
|
+
},
|
|
152
|
+
"standard-version": {
|
|
153
|
+
"skip": {
|
|
154
|
+
"tag": true
|
|
155
|
+
},
|
|
156
|
+
"scripts": {
|
|
157
|
+
"postchangelog": "replace 'https://github.com/syhr/sy-threed-graph/commit/' '' CHANGELOG.md"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
package/readme.text
ADDED