-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 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
72
73
74
75
76
77
{
"name": "@solomonneas/adguard-mcp",
"version": "0.3.0",
"description": "Operator control CLI for AdGuard Home with an MCP adapter",
"type": "module",
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.5.17",
"pluginSdkVersion": "2026.5.17"
}
},
"bin": {
"adguardctrl": "./dist/cli.js",
"adguardctl": "./dist/cli.js",
"adguard-mcp": "./dist/mcp-bin.js"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"start": "node dist/mcp-server.js",
"dev": "tsx mcp-server.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@lidless-labs/effect-operator-kit": "github:lidless-labs/effect-operator-kit#be71030",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sinclair/typebox": "^0.34.0",
"effect": "^3.21.4"
},
"peerDependencies": {
"openclaw": "^2026.4.22"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.6.2",
"openclaw": "^2026.4.22",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^7.0.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"keywords": [
"adguard",
"adguard-home",
"adguardctrl",
"dns",
"mcp",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/lidless-labs/adguardctrl"
}
}