-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.54 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
91
92
93
94
95
96
97
{
"name": "bid-assistant",
"private": true,
"version": "1.0.0",
"description": "专业文档对比工具",
"main": "electron-main.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"generate-icon": "node scripts/generate-icon.js",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"electron:build": "npm run build && npm run generate-icon && electron-builder",
"electron:build:win": "npm run build && npm run generate-icon && electron-builder --win",
"electron:build:mac": "npm run build && npm run generate-icon && electron-builder --mac",
"electron:build:linux": "npm run build && npm run generate-icon && electron-builder --linux"
},
"dependencies": {
"@remixicon/vue": "^4.7.0",
"docx": "^9.5.1",
"dompurify": "^3.3.3",
"jszip": "^3.10.1",
"mammoth": "^1.11.0",
"markdown-it": "^14.1.1",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "^4.10.38",
"tesseract.js": "^7.0.0",
"vue": "^3.5.24",
"vue-icons-plus": "^0.1.8",
"vue-router": "^4.6.3",
"vue3-border-beam": "^0.0.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"sharp": "^0.34.5",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vue-tsc": "^3.1.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.filecompare.app",
"productName": "文件对对碰",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron-main.js",
"preload.cjs",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "dist/logo.png"
},
"mac": {
"target": [
"dmg"
],
"icon": "dist/logo.png",
"category": "public.app-category.productivity"
},
"linux": {
"target": [
"AppImage"
],
"icon": "dist/logo.png",
"category": "Utility"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "文件对对碰"
}
}
}