-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.18 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": "webfn-cli",
"version": "1.0.2",
"description": "Agent-oriented CLI for browser-backed search, fetch, crawl, and scrape workflows.",
"type": "module",
"packageManager": "pnpm@10.28.2",
"author": "TheAlphaOnes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NormVg/webfn.git"
},
"keywords": [
"cli",
"scraper",
"puppeteer",
"lightpanda",
"cloudflare",
"agent",
"ai"
],
"bin": {
"webfn": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.18"
},
"scripts": {
"dev": "node --import tsx src/cli.ts",
"build": "pnpm clean && tsc -p tsconfig.json",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@lightpanda/browser": "^1.3.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"defuddle": "^0.18.1",
"dotenv": "^17.4.2",
"fast-xml-parser": "^5.7.2",
"linkedom": "^0.18.12",
"puppeteer-core": "23.6.0",
"turndown": "^7.2.4"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/turndown": "^5.0.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}