-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vba-visual",
"version": "1.0.0",
"description": "VBA 可视化编辑器 - 基于 Electron + Vue3 的 VBA 代码可视化编辑工具",
"author": "thoma",
"license": "MIT",
"private": false,
"type": "module",
"main": "dist-electron/main/index.mjs",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build && electron-builder",
"build:dir": "vite build && electron-builder --dir",
"preview": "vite preview",
"electron:dev": "vite --mode development",
"electron:build": "vite build && electron-builder",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx --fix",
"format": "prettier --write src/"
},
"build": {
"appId": "com.vba-visual.app",
"productName": "VBA 可视化编辑器",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"extraResources": [
{
"from": "public/icon.ico",
"to": "icon.ico"
}
],
"win": {
"target": [
"portable"
],
"icon": "public/icon.ico",
"compression": "maximum"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
},
"electron_mirror": "https://npmmirror.com/mirrors/electron/",
"dependencies": {
"@antv/graphlib": "^2.0.4",
"@antv/layout": "1.2.14-beta.8",
"@antv/x6": "^2.19.2",
"@antv/x6-plugin-clipboard": "^2.1.6",
"@antv/x6-plugin-export": "^2.1.6",
"@antv/x6-plugin-history": "^2.2.4",
"@antv/x6-plugin-keyboard": "^2.2.3",
"@antv/x6-plugin-selection": "^2.2.2",
"@antv/x6-plugin-snapline": "^2.1.7",
"@element-plus/icons-vue": "^2.3.2",
"element-plus": "^2.13.5",
"monaco-editor": "^0.55.1",
"pinia": "^3.0.4",
"tslib": "^2.8.1",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.9.0",
"electron": "^28.3.3",
"electron-builder": "^26.8.1",
"esbuild": "^0.27.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"sass": "^1.98.0",
"typescript": "~5.9.3",
"vite": "^5.4.21",
"vite-plugin-electron": "^0.29.1",
"vue-tsc": "^3.2.5"
}
}