process-vue3 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.
@@ -0,0 +1,28 @@
1
+ /*! Apache License 2.0 */
2
+ import { App } from 'vue';
3
+ import { default as CommonIcons } from './components/icons/index.vue';
4
+ import { default as DragDrawer } from './components/drag-drawer.vue';
5
+ import { default as ProcessEditor } from './process-editor.vue';
6
+
7
+ export { CommonIcons }
8
+
9
+ export { DragDrawer }
10
+
11
+ declare const installer: {
12
+ installed: boolean;
13
+ install(app: App): void;
14
+ };
15
+ export default installer;
16
+
17
+ export { ProcessEditor }
18
+
19
+ export { }
20
+
21
+
22
+ declare module "vue" {
23
+ interface GlobalComponents {
24
+ ProcessEditor: typeof ProcessEditor;
25
+ CommonIcons: typeof CommonIcons;
26
+ DragDrawer: typeof DragDrawer;
27
+ }
28
+ }
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "process-vue3",
3
+ "private": false,
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "main": "lib/process-vue3.umd.js",
7
+ "module": "lib/process-vue3.es.js",
8
+ "types": "lib/types/index.d.ts",
9
+ "files": [
10
+ "lib",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "author": "NBreak",
15
+ "license": "Apache-2.0",
16
+ "description": "process-vue3 版本",
17
+ "keywords": [
18
+ "vite",
19
+ "vue3",
20
+ "typescript",
21
+ "process-vue3"
22
+ ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://gitee.com/NBegin/process-vue3"
26
+ },
27
+ "homepage": "https://gitee.com/NBegin/process-vue3",
28
+ "bugs": {
29
+ "url": "https://gitee.com/NBegin/process-vue3/issues"
30
+ },
31
+ "sideEffects": [
32
+ "**/*.css"
33
+ ],
34
+ "scripts": {
35
+ "build:lib": "vue-tsc -p tsconfig.json --noEmit && vite build",
36
+ "deploy": "sh publish.sh",
37
+ "deploy2": "node scripts/publish.mjs",
38
+ "init": "sh InitialCommit.sh",
39
+ "lib": "npm run build:lib"
40
+ },
41
+ "dependencies": {
42
+ "@ans1998/vue3-color": "^3.0.7",
43
+ "ant-design-vue": "4.2.6",
44
+ "draw2d_pro": "^1.0.38",
45
+ "jquery": "3.7.1",
46
+ "lodash-es": "4.17.21",
47
+ "moment": "2.30.1",
48
+ "vue": "^3.5.17",
49
+ "vue-draggable-resizable-gorkys": "2.4.8"
50
+ },
51
+ "devDependencies": {
52
+ "@types/jquery": "^3.5.32",
53
+ "@types/node": "^24.2.0",
54
+ "@vitejs/plugin-vue": "^6.0.0",
55
+ "@vitejs/plugin-vue-jsx": "^5.0.1",
56
+ "@vue/tsconfig": "^0.7.0",
57
+ "file-loader": "^6.2.0",
58
+ "less": "^4.4.0",
59
+ "less-loader": "^12.3.0",
60
+ "rimraf": "^6.0.1",
61
+ "terser": "^5.43.1",
62
+ "typescript": "~5.8.3",
63
+ "url-loader": "^4.1.1",
64
+ "vite": "^7.0.4",
65
+ "vite-plugin-dts": "^4.5.4",
66
+ "vite-plugin-importer": "^0.2.5",
67
+ "vue-tsc": "^2.2.12"
68
+ }
69
+ }