-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"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": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"test:unit": "pnpm -r test:unit",
"test:integration": "pnpm -r test:integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean",
"publish:packages": "pnpm -r publish"
},
"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": "^16.3.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^4.0.6"
},
"pnpm": {
"resolutions": {
"form-data": "^4.0.4"
},
"overrides": {
"form-data": "^4.0.4"
}
}
}