-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 932 Bytes
/
package.json
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
{
"name": "browserbase-quickstart-playwright-js-parallelism",
"version": "0.0.1",
"description": "A template to use Playwright with Browserbase to achieve parallel tasks",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserbase/quickstart-playwright-js-parallelism.git"
},
"private": "true",
"author": "Paul Klein <paul@browserbase.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/browserbase/quickstart-playwright-js-parallelism/issues"
},
"homepage": "https://github.com/browserbase/quickstart-playwright-js-parallelism#readme",
"dependencies": {
"@browserbasehq/sdk": "latest",
"playwright-core": "^1.43.1"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.2"
}
}