-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "@browserbasehq/integrations",
"version": "1.0.0",
"description": "Browserbase integrations - A collection of examples for integrating Browserbase with various frameworks and tools",
"type": "module",
"private": true,
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"browserbase",
"integrations",
"monorepo",
"automation",
"browser",
"testing"
],
"author": "Browserbase Team",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^25.0.9",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^17.5.0",
"prettier": "^3.3.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.12.2",
"vitest": "^4.0.6"
},
"pnpm": {
"resolutions": {
"form-data": "^4.0.4"
},
"overrides": {
"form-data": "^4.0.4"
}
}
}