claude-warden 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/dist/index.cjs +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-warden",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Smart command safety filter for Claude Code — parses shell pipelines and evaluates per-command safety rules to auto-approve safe commands and block dangerous ones",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "banyudu"
|
package/dist/index.cjs
CHANGED
|
@@ -19202,7 +19202,8 @@ var SAFE_DEV_TOOLS = [
|
|
|
19202
19202
|
"wrangler",
|
|
19203
19203
|
"netlify",
|
|
19204
19204
|
"vercel",
|
|
19205
|
-
"json"
|
|
19205
|
+
"json",
|
|
19206
|
+
"biome"
|
|
19206
19207
|
];
|
|
19207
19208
|
var SCRIPT_RUNNERS = ["tsx", "ts-node", "nodemon"];
|
|
19208
19209
|
var REGISTRY_OPS = ["publish", "unpublish", "deprecate", "owner", "access", "token", "adduser", "login", "logout"];
|