- 移除extension模块,将功能迁移至node-agent - 修复类型导出问题,使用export type明确类型导出 - 统一数据库连接方式,从直接导入改为使用config/database - 更新文档中的项目结构描述 - 添加多个服务的实用方法,如getForecast、getBalances等 - 修复类型错误和TS1205警告 - 优化RedisService调用方式 - 添加新的实体类型定义 - 更新审计日志格式,统一字段命名
35 lines
860 B
JSON
35 lines
860 B
JSON
{
|
|
"name": "temu-seller-assistant",
|
|
"version": "1.0.0",
|
|
"description": "Crawlful: 全球电商增长中台",
|
|
"workspaces": [
|
|
"server",
|
|
"dashboard",
|
|
"node-agent"
|
|
],
|
|
"scripts": {
|
|
"setup": "npm install",
|
|
"server:dev": "cd server && npm run dev",
|
|
"server:start": "cd server && npm run start",
|
|
"dashboard:dev": "cd dashboard && npm run dev",
|
|
"dashboard:build": "cd dashboard && npm run build",
|
|
"node-agent:dev": "cd node-agent && npm run dev",
|
|
"dev": "npm run server:dev",
|
|
"build": "npm run dashboard:build"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.13.6",
|
|
"bullmq": "^5.71.0",
|
|
"dotenv": "^17.3.1",
|
|
"ioredis": "^5.10.0",
|
|
"typescript": "^5.9.3",
|
|
"ws": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-plugin-boundaries": "^6.0.0"
|
|
}
|
|
}
|