mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-20 12:30:04 +00:00
* fix: graph execution on different window * fix: pass screenshot tools only if support images (#237)
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "@browseros/shared",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.2"
|
|
},
|
|
"exports": {
|
|
"./constants/exit-codes": {
|
|
"types": "./src/constants/exit-codes.ts",
|
|
"default": "./src/constants/exit-codes.ts"
|
|
},
|
|
"./constants/ports": {
|
|
"types": "./src/constants/ports.ts",
|
|
"default": "./src/constants/ports.ts"
|
|
},
|
|
"./constants/timeouts": {
|
|
"types": "./src/constants/timeouts.ts",
|
|
"default": "./src/constants/timeouts.ts"
|
|
},
|
|
"./constants/limits": {
|
|
"types": "./src/constants/limits.ts",
|
|
"default": "./src/constants/limits.ts"
|
|
},
|
|
"./constants/urls": {
|
|
"types": "./src/constants/urls.ts",
|
|
"default": "./src/constants/urls.ts"
|
|
},
|
|
"./constants/paths": {
|
|
"types": "./src/constants/paths.ts",
|
|
"default": "./src/constants/paths.ts"
|
|
},
|
|
"./types/logger": {
|
|
"types": "./src/types/logger.ts",
|
|
"default": "./src/types/logger.ts"
|
|
},
|
|
"./schemas/llm": {
|
|
"types": "./src/schemas/llm.ts",
|
|
"default": "./src/schemas/llm.ts"
|
|
},
|
|
"./schemas/ui-stream": {
|
|
"types": "./src/schemas/ui-stream.ts",
|
|
"default": "./src/schemas/ui-stream.ts"
|
|
},
|
|
"./schemas/browser-context": {
|
|
"types": "./src/schemas/browser-context.ts",
|
|
"default": "./src/schemas/browser-context.ts"
|
|
}
|
|
}
|
|
}
|