-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.57 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
{
"name": "bid-assistant",
"private": true,
"version": "1.0.0",
"description": "专业文档对比工具",
"author": "sikenali <sikenali@example.com>",
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "vite --port=5173 & concurrently \"tsc -p electron/tsconfig.json --watch\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win --x64",
"electron:build:mac": "npm run build && electron-builder --mac --x64 --arm64",
"electron:build:linux": "npm run build && electron-builder --linux --x64"
},
"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": "^9.2.4",
"cross-env": "^10.1.0",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vue-tsc": "^3.1.4",
"wait-on": "^9.1.0"
},
"build": {
"appId": "com.bidcompare.app",
"productName": "bid-compare",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"extraMetadata": {
"main": "electron/main.js"
},
"win": {
"target": [{ "target": "nsis", "arch": ["x64"] }],
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"signingHashAlgorithms": [],
"sign": null
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "bid-compare"
},
"mac": {
"target": [{ "target": "dmg", "arch": ["x64", "arm64"] }],
"category": "public.app-category.productivity",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
},
"linux": {
"target": [{ "target": "deb", "arch": ["x64"] }],
"category": "Office",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
}
},
"publish": {
"provider": "github",
"releaseType": "release"
}
}