Files
backup-manager/package.json

37 lines
741 B
JSON
Raw Permalink Normal View History

2026-02-01 15:12:59 +08:00
{
"name": "backup-manager",
"version": "1.0.0",
"description": "便携式备份管理工具",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"lint": "eslint ."
},
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"eslint": "^9.39.2",
"globals": "^17.3.0"
},
"dependencies": {
"archiver": "^6.0.1"
},
"build": {
"appId": "com.backup-manager.app",
"productName": "备份管理器",
"directories": {
"output": "dist"
},
"win": {
"target": "portable"
},
"portable": {
"artifactName": "备份管理器.exe"
}
}
}