-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
75
{
"name": "@hasdata/hasdata-openclaw-plugin",
"version": "0.1.5",
"description": "HasData plugin for OpenClaw — Google SERP, Google Maps, Amazon, Zillow, Redfin, Airbnb, Yelp, Indeed, and arbitrary web scraping via api.hasdata.com. Requires a HasData API key (HASDATA_API_KEY env var or plugins.entries.hasdata.config.apiKey).",
"type": "module",
"license": "MIT",
"author": {
"name": "HasData",
"email": "[email protected]",
"url": "https://hasdata.com"
},
"homepage": "https://github.com/HasData/hasdata-openclaw-plugin",
"repository": {
"type": "git",
"url": "https://github.com/HasData/hasdata-openclaw-plugin.git"
},
"bugs": {
"url": "https://github.com/HasData/hasdata-openclaw-plugin/issues"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"hasdata",
"scraping",
"serp",
"google",
"amazon",
"zillow"
],
"files": [
"src",
"skills",
"openclaw.plugin.json",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"generate": "node scripts/generate-endpoints.mjs",
"try": "tsx scripts/try.ts"
},
"dependencies": {
"@sinclair/typebox": "^0.33.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.24-beta.2"
},
"peerDependenciesMeta": {
"openclaw": { "optional": true }
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"openclaw": {
"id": "hasdata",
"extensions": ["./src/index.ts"],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.3.24-beta.2",
"pluginSdkVersion": "2026.3.24-beta.2"
}
},
"engines": {
"node": ">=22"
}
}