-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "openclaw-serpapi-plugin",
"version": "1.0.0",
"description": "OpenClaw SerpAPI Plugin",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"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"
}
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist",
"docs": "typedoc && (cat README-header.md; echo; pnpm exec concat-md docs) > README.md"
},
"keywords": [],
"author": "Von Uyvico",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"README.md",
"openclaw.plugin.json",
"skills"
],
"packageManager": "pnpm@10.7.0",
"devDependencies": {
"@types/node": "^22.0.0",
"concat-md": "^0.5.1",
"esbuild-ts-paths": "^1.1.3",
"openclaw": "^2026.4.5",
"tsup": "^8.4.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.6.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.24-beta.2"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@sinclair/typebox": "^0.34.49",
"axios": "^1.13.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3"
}
}