feat: 初始化随机图片服务项目
添加核心功能模块包括: - 服务入口文件 app.js - 图片服务、缓存管理、页数检测等核心服务 - 日志工具和定时任务调度器 - 项目配置文件和文档
This commit is contained in:
26
package.json
Normal file
26
package.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "someacg-randompic",
|
||||
"version": "1.0.0",
|
||||
"description": "基于 someacg 提供的图片列表 API 的高性能随机图片服务",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
"start": "node src/app.js",
|
||||
"dev": "nodemon src/app.js",
|
||||
"test": "jest"
|
||||
},
|
||||
"keywords": ["someacg", "random", "image", "api"],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"express": "^4.18.2",
|
||||
"axios": "^1.6.0",
|
||||
"node-cron": "^3.0.3",
|
||||
"fs-extra": "^11.1.1",
|
||||
"winston": "^3.11.0",
|
||||
"dotenv": "^16.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.0.1",
|
||||
"jest": "^29.7.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user