@wrongstack/plugins 0.308.0 → 0.308.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/dist/audit/index.d.ts +6 -6
- package/dist/audit.js +7 -7
- package/dist/factories/index.d.ts +1 -1
- package/dist/factories.js +1 -1
- package/dist/import-organizer.js +4 -0
- package/dist/index.js +285 -50
- package/dist/llm-cache.js +6 -0
- package/dist/manifest.js +1 -1
- package/dist/path-guard.js +68 -15
- package/dist/plugin-audit-catalog.js +7 -7
- package/dist/prompt-firewall/index.d.ts +43 -41
- package/dist/prompt-firewall.js +217 -34
- package/dist/spec-linker.js +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/plugins",
|
|
3
|
-
"version": "0.308.
|
|
3
|
+
"version": "0.308.2",
|
|
4
4
|
"description": "Official WrongStack collection of focused plugins for code quality, security, observability, planning, and agent coordination",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ECOSTACK TECHNOLOGY OÜ",
|
|
@@ -168,6 +168,10 @@
|
|
|
168
168
|
"types": "./dist/injection-shield.d.ts",
|
|
169
169
|
"import": "./dist/injection-shield.js"
|
|
170
170
|
},
|
|
171
|
+
"./prompt-firewall": {
|
|
172
|
+
"types": "./dist/prompt-firewall.d.ts",
|
|
173
|
+
"import": "./dist/prompt-firewall.js"
|
|
174
|
+
},
|
|
171
175
|
"./llm-cache": {
|
|
172
176
|
"types": "./dist/llm-cache.d.ts",
|
|
173
177
|
"import": "./dist/llm-cache.js"
|
|
@@ -180,10 +184,6 @@
|
|
|
180
184
|
"types": "./dist/pr-drafter.d.ts",
|
|
181
185
|
"import": "./dist/pr-drafter.js"
|
|
182
186
|
},
|
|
183
|
-
"./prompt-firewall": {
|
|
184
|
-
"types": "./dist/prompt-firewall.d.ts",
|
|
185
|
-
"import": "./dist/prompt-firewall.js"
|
|
186
|
-
},
|
|
187
187
|
"./auto-escalate": {
|
|
188
188
|
"types": "./dist/auto-escalate.d.ts",
|
|
189
189
|
"import": "./dist/auto-escalate.js"
|
|
@@ -303,8 +303,8 @@
|
|
|
303
303
|
"vitest": "^4.1.10"
|
|
304
304
|
},
|
|
305
305
|
"dependencies": {
|
|
306
|
-
"@wrongstack/
|
|
307
|
-
"@wrongstack/
|
|
306
|
+
"@wrongstack/core": "0.308.2",
|
|
307
|
+
"@wrongstack/tools": "0.308.2"
|
|
308
308
|
},
|
|
309
309
|
"scripts": {
|
|
310
310
|
"build": "node ../../scripts/build-package.mjs",
|