-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.78 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "browser-use-sdk",
"version": "3.10.0",
"description": "Official TypeScript SDK for the Browser Use API",
"repository": {
"type": "git",
"url": "git+https://github.com/browser-use/sdk.git"
},
"homepage": "https://github.com/browser-use/sdk",
"bugs": {
"url": "https://github.com/browser-use/sdk/issues"
},
"author": "Browser Use",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./v3": {
"import": {
"types": "./dist/v3.d.ts",
"default": "./dist/v3.js"
},
"require": {
"types": "./dist/v3.d.cts",
"default": "./dist/v3.cjs"
}
},
"./v4": {
"import": {
"types": "./dist/v4.d.ts",
"default": "./dist/v4.js"
},
"require": {
"types": "./dist/v4.d.cts",
"default": "./dist/v4.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run --exclude tests/live.test.ts --exclude tests/prod.test.ts",
"test:live": "tsx tests/live.test.ts",
"test:prod": "tsx tests/prod.test.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"generate:types": "openapi-typescript ../backend/spec/api/v2/openapi.json -o src/generated/v2/types.ts && openapi-typescript ../backend/spec/api/v3/openapi.json -o src/generated/v3/types.ts"
},
"devDependencies": {
"@types/node": "26.1.2",
"openapi-typescript": "7.13.0",
"tsup": "8.5.1",
"tsx": "4.23.1",
"typescript": "5.9.3",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"keywords": [
"browser-use",
"browser",
"automation",
"ai",
"agent",
"web-agent",
"sdk"
],
"dependencies": {
"dotenv": "17.4.2",
"zod": "4.4.3"
},
"peerDependencies": {
"@x402/evm": "^2.20.0",
"@x402/fetch": "^2.20.0",
"viem": "^2.55.10"
},
"peerDependenciesMeta": {
"@x402/evm": {
"optional": true
},
"@x402/fetch": {
"optional": true
},
"viem": {
"optional": true
}
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
"pnpm": {
"overrides": {
"rollup": "4.62.3",
"vite": "8.1.5",
"minimatch@5": "5.1.9",
"fast-uri@3": "3.1.3",
"ws": "8.21.1",
"picomatch@4": "4.0.5",
"postcss": "8.5.24",
"js-yaml@4": "4.3.0",
"esbuild": "0.28.1",
"brace-expansion": "5.0.8"
}
}
}