scraper-api-com 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/scraper-api.js +3658 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "scraper-api-com",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Command-line client for the scraper-api.com scraping API — one command per platform endpoint, OAuth login, MCP agent wiring",
|
|
5
|
+
"author": "Fabian Bitter <fabian@bitter.de>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://scraper-api.com",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/bitterdev/scraper-api.com.git",
|
|
11
|
+
"directory": "apps/cli"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://scraper-api.com/#contact"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"scraper-api",
|
|
18
|
+
"scraping",
|
|
19
|
+
"api",
|
|
20
|
+
"cli",
|
|
21
|
+
"instagram",
|
|
22
|
+
"youtube",
|
|
23
|
+
"tiktok",
|
|
24
|
+
"linkedin",
|
|
25
|
+
"scraper"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20.0.0"
|
|
30
|
+
},
|
|
31
|
+
"bin": {
|
|
32
|
+
"scraper-api": "dist/scraper-api.js"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "node build.mjs",
|
|
42
|
+
"prepublishOnly": "node build.mjs",
|
|
43
|
+
"lint": "true",
|
|
44
|
+
"test": "vitest run"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^0.7.0",
|
|
48
|
+
"chalk": "^5.3.0",
|
|
49
|
+
"cli-table3": "^0.6.5",
|
|
50
|
+
"commander": "^12.1.0",
|
|
51
|
+
"conf": "^13.0.1",
|
|
52
|
+
"open": "^10.1.0",
|
|
53
|
+
"ora": "^8.1.1"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@scraper/api-client": "*",
|
|
57
|
+
"esbuild": "^0.28.1",
|
|
58
|
+
"vitest": "^4.1.10"
|
|
59
|
+
}
|
|
60
|
+
}
|