-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.63 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": "hol-guard-plugin",
"version": "0.3.0",
"private": true,
"description": "HOL Guard security plugin for Codex, DeepSeek Harness, and agent ecosystems.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hashgraph-online/hol-guard-plugin.git"
},
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"files": [
"index.js",
"dsh-process.js",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"LICENSE"
],
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"hol-guard",
"ai-security",
"agent-security"
],
"dsh": {
"compatibility": {
"dsh": "0.1.5-rc.2",
"dshReleases": {
"0.1.5-rc.2": "compatible"
}
},
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"test": "npm run test:runtime-sync && node tests/validate-adoption-integrations.mjs && node tests/validate-plugin.mjs && node tests/validate-spec-kit.mjs && node tests/validate-marketplace-manifests.mjs && node tests/validate-clawhub.mjs && node tests/validate-wshobson-agents.mjs && node tests/validate-dsh-plugin.mjs && node --test tests/openclaw-plugin.test.mjs tests/dsh-plugin.test.mjs tests/dsh-decision-precedence.test.mjs tests/dsh-execution-binding.test.mjs tests/dsh-process-trust.test.mjs",
"test:runtime-sync": "node --test tests/sync-hol-guard-runtime-version.test.mjs",
"sync:hol-guard-runtime": "node scripts/sync-hol-guard-runtime-version.mjs",
"test:dsh-e2e": "node tests/dsh-e2e.mjs"
},
"engines": {
"node": ">=20"
}
}