-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "fetchladder",
"version": "0.1.0",
"description": "Starts with plain HTTP and climbs to a real browser only when it can prove the cheap answer was a lie.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"bin": {
"fetchladder": "./dist/src/cli.js"
},
"files": [
"dist/src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
"test": "npm run build && node --test dist/test/*.test.js",
"smoke": "npm run build && node dist/test/smoke.js",
"doctor": "npm run build && node dist/src/cli.js doctor",
"prepublishOnly": "npm run build"
},
"keywords": [
"scraping",
"web-scraping",
"browser-automation",
"cdp",
"chrome-devtools-protocol",
"ai-agents",
"fetch",
"headless-chrome",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jeneidi/fetchladder.git"
},
"homepage": "https://github.com/Jeneidi/fetchladder#readme",
"bugs": {
"url": "https://github.com/Jeneidi/fetchladder/issues"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}