cursor done.

This commit is contained in:
2025-11-11 14:36:09 +08:00
parent 7a5fb889c5
commit 9b1eb6cafd
27 changed files with 4748 additions and 552 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "timeline-calendar",
"version": "2.0.0",
"description": "任务日历系统 - 带用户认证和多服务器支持",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"calendar",
"task",
"timeline"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^5.1.0",
"cors": "^2.8.5",
"sqlite3": "^5.1.7",
"bcryptjs": "^3.0.3",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}