Files
T
Lannamokia 803e6cdaee feat: 添加PostgreSQL数据库集成和机台管理功能
- 新增PostgreSQL数据库支持,包含内置和外部数据库两种部署模式
- 实现机台管理功能,包括保护状态控制和VHD关键词设置
- 添加用户认证系统,支持会话管理和权限控制
- 更新Docker配置,支持数据库持久化和健康检查
- 扩展API接口,提供完整的RESTful API文档
- 更新客户端代码以支持机台ID和保护检查功能
- 添加数据库初始化脚本和配置指南
2025-10-21 20:10:18 +08:00

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"
}
}