-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
87 lines (87 loc) · 2.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@browserbasehq/stagehand",
"version": "1.8.0",
"description": "An AI web browsing framework focused on simplicity and extensibility.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"2048": "npm run build-dom-scripts && tsx examples/2048.ts",
"example": "npm run build-dom-scripts && tsx examples/example.ts",
"debug-url": "npm run build-dom-scripts && tsx examples/debugUrl.ts",
"format": "prettier --write .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint .",
"cache:clear": "rm -rf .cache",
"evals": "npm run build-dom-scripts && tsx evals/index.eval.ts",
"e2e": "npm run build-dom-scripts && cd evals/deterministic && npx playwright test",
"build-dom-scripts": "tsx lib/dom/genDomScripts.ts",
"build-types": "tsc --emitDeclarationOnly --outDir dist",
"build-js": "tsup lib/index.ts --dts",
"build": "npm run lint && npm run build-dom-scripts && npm run build-js && npm run build-types",
"lint": "npm run prettier && npm run eslint",
"release": "npm run build && changeset publish",
"release-canary": "npm run build && changeset version --snapshot && changeset publish --tag alpha"
},
"files": [
"dist/**",
"lib/**"
],
"keywords": [],
"author": "Browserbase",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.16.0",
"@types/adm-zip": "^0.5.7",
"@types/cheerio": "^0.22.35",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/ws": "^8.5.13",
"adm-zip": "^0.5.16",
"autoevals": "^0.0.64",
"braintrust": "^0.0.171",
"cheerio": "^1.0.0",
"chromium-bidi": "^0.10.0",
"esbuild": "^0.21.4",
"eslint": "^9.16.0",
"express": "^4.21.0",
"globals": "^15.13.0",
"multer": "^1.4.5-lts.1",
"prettier": "^3.2.5",
"string-comparison": "^1.3.0",
"tsup": "^8.2.1",
"tsx": "^4.10.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.17.0"
},
"peerDependencies": {
"@playwright/test": "^1.42.1",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"openai": "^4.62.1",
"zod": "^3.23.8"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"@browserbasehq/sdk": "^2.0.0",
"sharp": "^0.33.5",
"ws": "^8.18.0",
"zod-to-json-schema": "^3.23.5"
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserbase/stagehand.git"
},
"bugs": {
"url": "https://github.com/browserbase/stagehand/issues"
},
"homepage": "https://github.com/browserbase/stagehand#readme"
}