-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.04 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
{
"name": "xapi-search",
"version": "0.1.0",
"description": "xapi.to Web Search Provider for OpenClaw",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": "^1.2.0"
}
},
"files": [
"index.ts",
"src/index.ts",
"src/lib/xapi-client.ts",
"src/providers/xapi-web-search-provider.ts",
"src/tools/xapi-search-tool.ts",
"skills",
"openclaw.plugin.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"openclaw",
"plugin",
"xapi",
"web-search"
],
"license": "MIT",
"peerDependencies": {
"openclaw": "^2026.3.23"
},
"dependencies": {
"@sinclair/typebox": "^0.34.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
}
}