CyberExam2-front/package.json
2024-10-21 23:36:31 +08:00

43 lines
851 B
JSON

{
"name": "electron_learn",
"version": "1.0.0",
"description": "electron learning",
"main": "main.js",
"scripts": {
"start-r": "chcp 65001 && nodemon --exec electron .",
"start": "chcp 65001 && electron .",
"build": "electron-builder"
},
"build": {
"appId": "top.awin-x.electron",
"win": {
"icon": "./icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
"portable"
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"electron"
],
"author": "awinx",
"license": "ISC",
"devDependencies": {
"builder-util": "^25.1.7",
"electron": "^33.0.1",
"electron-builder": "^25.1.8",
"nodemon": "^3.1.7"
}
}