-
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.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.4 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": "pageiq",
"version": "0.1.0",
"type": "module",
"description": "Structured web understanding for AI agents — powered by SDF Protocol",
"author": "SDF Protocol",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"agentweb_engine",
"prompts",
"README.md",
"LICENSE",
"skill.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sdfprotocol/agentweb.git"
},
"homepage": "https://sdfprotocol.org",
"bugs": {
"url": "https://github.com/sdfprotocol/agentweb/issues"
},
"keywords": [
"openclaw",
"plugin",
"sdf",
"web",
"extraction",
"structured-data",
"agents",
"memory",
"agentweb"
],
"openclaw": {
"id": "agentweb",
"build": {
"openclawVersion": "2026.3.23",
"pluginSdkVersion": "2026.3.23"
},
"compat": {
"pluginApi": ">=1.0.0",
"builtWithOpenClawVersion": "2026.3.23",
"pluginSdkVersion": "2026.3.23",
"minGatewayVersion": "2026.3.23"
},
"extensions": [
"./dist/index.js"
]
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outdir=dist --external:@openclaw/*",
"prepack": "npm run build"
},
"devDependencies": {
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
}
}