-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.76 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
66
67
68
69
70
71
72
73
74
{
"name": "@framers/agentos-ext-web-scraper",
"version": "0.1.0",
"description": "Intelligent web scraping with progressive fallbacks, proxy rotation, and LLM extraction",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./manifest.json": "./manifest.json",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"keywords": [
"agentos",
"extension",
"scraper",
"web",
"research"
],
"author": {
"name": "Framers AI",
"url": "https://frame.dev"
},
"contributors": [
{
"name": "Johnny Dunn",
"email": "johnnyfived@protonmail.com",
"url": "https://github.com/jddunn"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/framerslab/agentos-extensions.git",
"directory": "registry/curated/research/web-scraper"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"manifest.json",
"recipes"
],
"peerDependencies": {
"@framers/agentos": "^0.10.11"
},
"dependencies": {
"yaml": "^2.8.1"
},
"devDependencies": {
"@framers/agentos": "workspace:^",
"@types/node": "^20.12.12",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"homepage": "https://github.com/framerslab/agentos-extensions/tree/master/registry/curated/research/web-scraper#readme",
"bugs": {
"url": "https://github.com/framerslab/agentos-extensions/issues"
}
}