-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.62 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
{
"name": "@contextdev/openclaw-context",
"version": "1.0.1",
"description": "Context.dev web search, scraping, extraction, parsing, brand intelligence, monitors, and batches for OpenClaw.",
"author": "Context.dev",
"license": "MIT",
"keywords": [
"openclaw",
"context.dev",
"web-search",
"web-scraping",
"mcp"
],
"repository": {
"type": "git",
"url": "https://github.com/context-dot-dev/openclaw-context"
},
"homepage": "https://context.dev",
"bugs": {
"url": "https://github.com/context-dot-dev/openclaw-context/issues"
},
"type": "module",
"files": [
"dist",
"openclaw.plugin.json",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"typebox": "1.3.6"
},
"devDependencies": {
"@types/node": "24.10.1",
"openclaw": "2026.7.1-2",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"peerDependencies": {
"openclaw": ">=2026.7.1-2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"install": {
"clawhubSpec": "clawhub:@contextdev/openclaw-context",
"defaultChoice": "clawhub",
"minHostVersion": ">=2026.7.1-2",
"allowInvalidConfigRecovery": true
},
"compat": {
"pluginApi": ">=2026.7.1-2"
},
"build": {
"openclawVersion": "2026.7.1-2",
"bundledDist": false
},
"release": {
"publishToClawHub": true,
"publishToNpm": false
}
}
}