-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.97 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
76
77
78
79
{
"name": "@diffbot/openclaw-plugin",
"version": "0.1.2",
"description": "Diffbot tools and skills for OpenClaw: Knowledge Graph search (organizations, people, news, places, deals, DQL), web search, URL extraction, entity resolution, and site crawling.",
"type": "module",
"license": "MIT",
"author": {
"name": "Diffbot",
"url": "https://diffbot.com"
},
"homepage": "https://github.com/diffbot/diffbot-openclaw#readme",
"repository": {
"type": "git",
"url": "https://github.com/diffbot/diffbot-openclaw.git"
},
"bugs": {
"url": "https://github.com/diffbot/diffbot-openclaw/issues"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"diffbot",
"knowledge-graph",
"dql",
"web-search",
"web-extraction",
"crawler",
"entity-resolution",
"company-research"
],
"engines": {
"node": ">=24.16.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"plugin:build": "npm run build && openclaw plugins build --entry ./dist/index.js",
"plugin:validate": "npm run build && openclaw plugins validate --entry ./dist/index.js",
"test": "vitest run --config ./vitest.config.ts",
"check": "npm run typecheck && npm run plugin:validate && npm test",
"prepack": "npm run build"
},
"files": [
"dist",
"assets",
"skills",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"peerDependencies": {
"openclaw": ">=2026.5.17"
},
"dependencies": {
"@diffbot/typescript": "^0.2.0",
"typebox": "^1.1.38"
},
"devDependencies": {
"openclaw": "^2026.9.3",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.5.17",
"minGatewayVersion": "2026.5.17"
},
"build": {
"openclawVersion": "2026.9.3",
"pluginSdkVersion": "2026.9.3"
}
},
"publishConfig": {
"access": "public"
}
}