Files
makemd/node-agent/package.json
wurenzhi 136c2fa579 feat: 初始化项目结构并添加核心功能模块
- 新增文档模板和导航结构
- 实现服务器基础API路由和控制器
- 添加扩展插件配置和前端框架
- 引入多租户和权限管理模块
- 集成日志和数据库配置
- 添加核心业务模型和类型定义
2026-03-17 22:07:19 +08:00

32 lines
641 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": {
"axios": "^1.13.6",
"dotenv": "^17.3.1",
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/node": "^25.3.3",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}