- 新增PostgreSQL数据库支持,包含内置和外部数据库两种部署模式 - 实现机台管理功能,包括保护状态控制和VHD关键词设置 - 添加用户认证系统,支持会话管理和权限控制 - 更新Docker配置,支持数据库持久化和健康检查 - 扩展API接口,提供完整的RESTful API文档 - 更新客户端代码以支持机台ID和保护检查功能 - 添加数据库初始化脚本和配置指南
31 lines
671 B
JSON
31 lines
671 B
JSON
{
|
|
"name": "vhd-select-server",
|
|
"version": "1.2.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",
|
|
"pg": "^8.11.3",
|
|
"dotenv": "^16.3.1",
|
|
"express-session": "^1.17.3",
|
|
"bcryptjs": "^2.4.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
} |