-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.61 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.61 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
{
"name": "hardstop",
"version": "1.4.8",
"description": "Pre-execution safety layer for Claude Code - blocks dangerous commands before they run. Part of the Hardstop ecosystem.",
"keywords": [
"claude-code",
"plugin",
"safety",
"security",
"command-safety",
"shell-protection",
"ai-safety",
"mitre-attack",
"risk-scoring",
"command-validation",
"shell-safety",
"ai-agent-security",
"bash-guardrail",
"pre-execution-check",
"prompt-injection-defense",
"agentic-safety",
"claude-code-hooks",
"llm-command-filter",
"dangerous-command-detection",
"supply-chain-security",
"fail-closed",
"command-allowlist",
"command-blocklist",
"claude-cowork"
],
"author": {
"name": "Francesco Marinoni Moretto",
"email": "contact@clarity-gate.org"
},
"license": "CC-BY-4.0",
"homepage": "https://github.com/frmoretto/hardstop",
"repository": {
"type": "git",
"url": "https://github.com/frmoretto/hardstop.git"
},
"bugs": {
"url": "https://github.com/frmoretto/hardstop/issues"
},
"bin": {
"hardstop": "./bin/install.js"
},
"files": [
".claude-plugin/",
".claude/",
".codex/",
".github/skills/",
"hooks/*.py",
"hooks/*.json",
"commands/",
"patterns/",
"bin/",
"skills/",
"LICENSE",
"README.md",
"CHANGELOG.md",
"install.md"
],
"engines": {
"node": ">=16.7.0"
},
"scripts": {
"test": "echo \"Use pytest for testing: cd hardstop && pytest tests/\"",
"postinstall": "node bin/postinstall.js"
},
"dependencies": {},
"devDependencies": {}
}