实现远程VHD选择服务集成,支持从配置文件中读取远程服务URL 添加NX_INS USB设备检测功能,支持从USB设备扫描和替换VHD文件 新增配置文件解析和HTTP客户端请求功能 优化VHD文件管理逻辑,支持关键词匹配和文件替换
27 lines
565 B
JSON
27 lines
565 B
JSON
{
|
|
"name": "vhd-select-server",
|
|
"version": "1.0.0",
|
|
"description": "Cross-platform VHD selection server with web GUI",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"vhd",
|
|
"server",
|
|
"cross-platform",
|
|
"web-gui"
|
|
],
|
|
"author": "VHD Select Server",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"body-parser": "^1.20.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
} |