mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 12:55:09 +00:00
* rename PORT to AGENT_PORT * rename WebsocketManger to ControllerBridge * update the log info * fix: rename wsManager to controllerBridge * update Logger to use common/Logger * fix: logger, unify and standarize the naming * remove standalone agent * rename to controller-based, cdp-based, cleaner imports in main and claude-sdk * refactor: main.ts * refactor: .env
29 lines
698 B
JSON
29 lines
698 B
JSON
{
|
|
"name": "@browseros/server",
|
|
"version": "0.0.1",
|
|
"description": "Unified BrowserOS server - main application",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"bin": {
|
|
"browseros-server": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "bun src/index.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@browseros/agent": "workspace:*",
|
|
"@browseros/common": "workspace:*",
|
|
"@browseros/tools": "workspace:*",
|
|
"@browseros/mcp": "workspace:*",
|
|
"@browseros/controller-server": "workspace:*",
|
|
"commander": "^14.0.1",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.3.3",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|