Files
makemd/node-agent/package.json
wurenzhi c932a67be2 feat: 实现前端组件库和API服务基础架构
refactor: 移除废弃的AGI策略演进服务

fix: 修正磁盘I/O指标字段命名

chore: 更新项目依赖版本

test: 添加前后端集成测试用例

docs: 更新AI模块接口文档

style: 统一审计日志字段命名规范

perf: 优化Redis订阅连接错误处理

build: 配置多项目工作区结构

ci: 添加Vite开发服务器CORS支持
2026-03-18 15:22:55 +08:00

29 lines
564 B
JSON

{
"name": "node-agent",
"version": "1.0.0",
"description": "Win Node Agent - 无 API 平台执行代理",
"main": "dist/main.js",
"scripts": {
"dev": "nodemon src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"check": "tsc --noEmit"
},
"keywords": [
"agent",
"playwright",
"automation"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/node": "^25.3.3",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2"
}
}