-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"name": "@serpapi/openclaw-plugin",
"version": "1.0.0",
"description": "SerpApi web search provider for OpenClaw (Google Light, 100+ engines). Specialized SerpApi tools follow in subsequent releases.",
"keywords": [
"openclaw",
"openclaw-plugin",
"serpapi",
"web-search",
"search"
],
"license": "MIT",
"author": "SerpApi",
"repository": {
"type": "git",
"url": "git+https://github.com/serpapi/serpapi-openclaw-plugin.git"
},
"bugs": {
"url": "https://github.com/serpapi/serpapi-openclaw-plugin/issues"
},
"homepage": "https://github.com/serpapi/serpapi-openclaw-plugin#readme",
"type": "module",
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=22.19.0"
},
"files": [
"dist",
"openclaw.plugin.json",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"openclaw": ">=2026.6.11"
},
"devDependencies": {
"@types/node": "^22.20.1",
"openclaw": "2026.6.11",
"typescript": "^5.6.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"install": {
"clawhubSpec": "clawhub:@serpapi/openclaw-plugin",
"npmSpec": "@serpapi/openclaw-plugin",
"defaultChoice": "clawhub",
"minHostVersion": ">=2026.6.11"
},
"compat": {
"pluginApi": ">=2026.6.11",
"minGatewayVersion": "2026.6.11"
},
"build": {
"openclawVersion": "2026.6.11",
"pluginSdkVersion": "2026.6.11"
},
"release": {
"publishToClawHub": true,
"publishToNpm": true
}
}
}