1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "examclient",
- "version": "1.0.0",
- "description": "IES.ExamClient",
- "main": "main.js",
- "scripts": {
- "start": "chcp 65001 && electron .",
- "test": "echo \"Error: no test specified\" && exit 1",
- "package": "electron-packager . --platform=win32 --arch=ia32 --out=dist --overwrite",
- "build": "electron-builder --win --ia32"
- },
- "keywords": [],
- "author": "",
- "license": "MIT",
- "devDependencies": {
- "electron": "^21.4.4",
- "electron-builder": "^25.1.8",
- "eslint": "^9.21.0"
- },
- "build": {
- "appId": "exam.habook.local",
- "productName": "评测教师端",
- "directories": {
- "output": "dist"
- },
- "win": {
- "requestedExecutionLevel": "requireAdministrator",
- "target": "nsis",
- "sign": false,
- "icon": "logo.ico"
- },
- "nsis": {
- "unicode": true,
- "runAfterFinish": false,
- "oneClick": false,
- "perMachine": true,
- "allowToChangeInstallationDirectory": true,
- "createDesktopShortcut": true,
- "createStartMenuShortcut": true,
- "installerHeader": "header.bmp",
- "installerSidebar": "sidebar.bmp",
- "allowElevation": true
- },
- "extraFiles": [
- {
- "from": "server",
- "to": "server",
- "filter": [
- "**/*"
- ]
- }
- ],
- "extraResources": [
- "index.html"
- ]
- },
- "dependencies": {
- "adm-zip": "^0.5.16",
- "axios": "^1.7.9",
- "network-interfaces": "^1.1.0"
- }
- }
|