-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.1 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
{
"name": "stagehand-workspace",
"version": "4.0.0",
"private": true,
"description": "Stagehand monorepo workspace",
"homepage": "https://stagehand.dev",
"bugs": {
"url": "https://github.com/browserbase/stagehand/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/browserbase/stagehand.git"
},
"type": "module",
"scripts": {
"check": "turbo run fmt:check lint typecheck",
"docs": "pnpm --filter ./packages/docs dev",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"lint": "oxlint .",
"test": "turbo run test:unit test:browser",
"test:unit": "vitest run rules/ast-grep scripts",
"test:integration": "tsx scripts/test-integration.ts",
"typecheck": "tsc --noEmit -p tsconfig.tooling.json",
"build": "turbo run build",
"build:cli": "turbo run build:cli",
"generate:python": "uv --directory packages/sdk-python run --locked python scripts/generate.py",
"generate:go": "go -C packages/sdk-go generate ./...",
"build:wheel": "uv --directory packages/sdk-python run --locked python scripts/build.py"
},
"devDependencies": {
"@ast-grep/lang-go": "catalog:",
"@ast-grep/lang-python": "catalog:",
"@ast-grep/napi": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@changesets/parse": "0.4.3",
"@opentelemetry/api": "catalog:",
"@opentelemetry/sdk-trace-web": "catalog:",
"@oxlint/plugins": "1.68.0",
"@types/chrome": "catalog:",
"@types/node": "catalog:",
"dotenv": "catalog:",
"openai": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"smol-toml": "catalog:",
"tsx": "catalog:",
"turbo": "^2.8.10",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.10.0",
"onFail": "warn"
},
"runtime": {
"name": "node",
"version": "^24.18.0",
"onFail": "download"
}
},
"engines": {
"node": ">=22.18.0"
}
}