-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 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
{
"name": "@brightdata/cli",
"version": "0.1.3",
"description": "Command-line interface for Bright Data. Scrape, search, extract structured data, and automate browsers directly from your terminal.",
"main": "dist/index.js",
"bin": {
"brightdata": "dist/index.js",
"bdata": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run build",
"type-check": "tsc --noEmit",
"test:watch": "vitest",
"test": "vitest run",
"publish-beta": "npm publish --tag beta",
"publish-prod": "npm publish --access public"
},
"keywords": [
"brightdata",
"bright-data",
"cli",
"web-scraping",
"scraper",
"serp",
"data-extraction",
"proxy",
"unlocker",
"dataset"
],
"author": "Bright Data",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brightdata/cli.git"
},
"bugs": {
"url": "https://github.com/brightdata/cli/issues"
},
"homepage": "https://brightdata.com",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md"
],
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@inquirer/prompts": "^8.2.1",
"commander": "^14.0.2",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"xdg-basedir": "^5.1.0"
}
}