-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.56 KB
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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "stagehand-workspace",
"version": "0.0.0",
"private": true,
"description": "Stagehand monorepo workspace",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:full": "turbo run build",
"build:cjs": "turbo run build:cjs",
"build:cli": "turbo run build:cli",
"build:esm": "turbo run build:esm",
"build:sea": "turbo run build:sea:esm",
"build:sea:esm": "turbo run build:sea:esm",
"build:sea:cjs": "turbo run build:sea:cjs",
"lint": "turbo run lint",
"format": "prettier --write .",
"prettier": "prettier --write .",
"eslint": "eslint .",
"test": "turbo run test:core test:e2e test:server test:evals test:cli",
"test:core": "turbo run test:core --",
"test:core:local": "STAGEHAND_BROWSER_TARGET=local pnpm run test:core --",
"test:core:bb": "STAGEHAND_BROWSER_TARGET=browserbase pnpm run test:core --",
"test:e2e": "turbo run test:e2e --",
"test:e2e:local": "STAGEHAND_BROWSER_TARGET=local pnpm run test:e2e --",
"test:e2e:bb": "STAGEHAND_BROWSER_TARGET=browserbase pnpm run test:e2e --",
"test:server": "turbo run test:server --",
"test:server:sea": "STAGEHAND_SERVER_TARGET=sea pnpm run test:server --",
"test:server:local": "STAGEHAND_SERVER_TARGET=local pnpm run test:server --",
"test:server:remote": "STAGEHAND_SERVER_TARGET=remote pnpm run test:server --",
"test:evals": "turbo run test:evals --",
"test:evals:local": "STAGEHAND_BROWSER_TARGET=local pnpm run test:evals --",
"test:evals:bb": "STAGEHAND_BROWSER_TARGET=browserbase pnpm run test:evals --",
"coverage:merge": "pnpm -w exec tsx packages/core/scripts/coverage.ts merge",
"docs": "turbo run docs",
"dev": "turbo run dev",
"example": "pnpm --filter @browserbasehq/stagehand run example --",
"cache:clear": "turbo run build --force",
"prepare": "node packages/core/scripts/prepare.js && husky",
"release": "turbo run build && changeset publish",
"release-canary": "turbo run build && changeset version --snapshot && changeset publish --tag alpha"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"dotenv": "^17.3.1",
"esbuild": "0.28.1",
"eslint": "^10.3.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"junit-to-ctrf": "^0.0.14",
"lint-staged": "^16.4.0",
"prettier": "^3.2.5",
"source-map": "^0.7.4",
"tsx": "^4.19.4",
"turbo": "^2.9.15",
"typescript": "5.8.3",
"typescript-eslint": "^8.56.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserbase/stagehand.git"
},
"bugs": {
"url": "https://github.com/browserbase/stagehand/issues"
},
"homepage": "https://stagehand.dev",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"pnpm": {
"overrides": {
"axios": "^1.15.2",
"follow-redirects": "^1.16.0",
"jws": "^4.0.1",
"lodash": "^4.18.0",
"minimatch": "^3.1.4",
"@oclif/core>minimatch": "^10.2.5",
"hono": "^4.12.25",
"uuid": "^11.1.1",
"ws": "^8.20.1",
"qs": "^6.15.2",
"esbuild": "0.28.1",
"form-data": "^4.0.6",
"tar": "^7.5.16",
"js-yaml@4.1.1": "4.2.0",
"read-yaml-file": "2.1.0",
"undici": "^7.28.0"
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}