claude-warden 1.1.8 → 1.1.9

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-warden",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
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
@@ -19084,6 +19084,7 @@ var DEFAULT_CONFIG = {
19084
19084
  "dirs",
19085
19085
  "hash",
19086
19086
  "alias",
19087
+ "set",
19087
19088
  "sleep",
19088
19089
  "wait",
19089
19090
  "time",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-warden",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "Smart command safety filter for Claude Code — auto-approves safe commands, blocks dangerous ones",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -28,6 +28,14 @@
28
28
  "README.md",
29
29
  "LICENSE"
30
30
  ],
31
+ "devDependencies": {
32
+ "@types/node": "^20.0.0",
33
+ "bash-parser": "^0.5.0",
34
+ "tsup": "^8.0.0",
35
+ "typescript": "^5.4.0",
36
+ "vitest": "^1.6.0",
37
+ "yaml": "^2.4.0"
38
+ },
31
39
  "scripts": {
32
40
  "build": "tsup",
33
41
  "dev": "tsup --watch",
@@ -36,15 +44,7 @@
36
44
  "typecheck": "tsc --noEmit",
37
45
  "eval": "node dist/index.cjs",
38
46
  "sync-plugin-version": "node -e \"const p=require('./package.json'),fs=require('fs'),f='.claude-plugin/plugin.json',j=JSON.parse(fs.readFileSync(f));j.version=p.version;fs.writeFileSync(f,JSON.stringify(j,null,2)+'\\n')\"",
39
- "prepublishOnly": "pnpm run sync-plugin-version && pnpm run build && pnpm run test",
40
- "postpublish": "claude plugin update claude-warden@local 2>/dev/null; claude plugin update claude-warden@claude-warden 2>/dev/null; echo 'Plugin caches updated'"
41
- },
42
- "devDependencies": {
43
- "@types/node": "^20.0.0",
44
- "bash-parser": "^0.5.0",
45
- "tsup": "^8.0.0",
46
- "typescript": "^5.4.0",
47
- "vitest": "^1.6.0",
48
- "yaml": "^2.4.0"
47
+ "docs:dev": "cd docs-src && pnpm dev",
48
+ "docs:build": "cd docs-src && pnpm install && pnpm build"
49
49
  }
50
- }
50
+ }