42 lines
925 B
JSON
42 lines
925 B
JSON
{
|
|
"name": "@browser-use/browser-use",
|
|
"version": "0.0.1",
|
|
"description": "A small TypeScript browser agent powered by Browser Use Cloud",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=22.19.0"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"bin": {
|
|
"browser-use-js": "./dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"check": "tsc -p tsconfig.json --noEmit",
|
|
"test": "npm run build && node --test test/*.test.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@earendil-works/pi-agent-core": "0.84.2",
|
|
"@earendil-works/pi-ai": "0.84.2",
|
|
"typebox": "1.3.7",
|
|
"ws": "8.21.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.19.15",
|
|
"@types/ws": "8.18.1",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|