Files
BH-Bookstore-2023/frontend/client/package.json

43 lines
811 B
JSON

{
"name": "bookstoreclient",
"version": "1.1.3",
"description": "Book Store Client",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "ZhuangYumin",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
"electron-builder": "^24.9.1"
},
"build": {
"appId": "ZhuangYumin.homework.bookstoreclient",
"mac": {
"target": "dmg"
},
"win": {
"icon":"book.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Utility"
}
}
}