@wrongstack/plugins 0.291.0 → 0.291.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/catalog.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2135 -1985
- package/dist/process-guard/index.d.ts +41 -0
- package/dist/process-guard/index.d.ts.map +1 -0
- package/dist/process-guard.d.ts +2 -0
- package/dist/process-guard.js +150 -0
- package/dist/spec-linker.js +2134 -1985
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/plugins",
|
|
3
|
-
"version": "0.291.
|
|
4
|
-
"description": "Official WrongStack plugin collection —
|
|
3
|
+
"version": "0.291.2",
|
|
4
|
+
"description": "Official WrongStack plugin collection — 64 focused, single-purpose plugins for code quality, security, observability, planning, and agent coordination",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ECOSTACK TECHNOLOGY OÜ",
|
|
7
7
|
"type": "module",
|
|
@@ -108,6 +108,10 @@
|
|
|
108
108
|
"types": "./dist/path-guard.d.ts",
|
|
109
109
|
"import": "./dist/path-guard.js"
|
|
110
110
|
},
|
|
111
|
+
"./process-guard": {
|
|
112
|
+
"types": "./dist/process-guard.d.ts",
|
|
113
|
+
"import": "./dist/process-guard.js"
|
|
114
|
+
},
|
|
111
115
|
"./context-pins": {
|
|
112
116
|
"types": "./dist/context-pins.d.ts",
|
|
113
117
|
"import": "./dist/context-pins.js"
|
|
@@ -278,8 +282,8 @@
|
|
|
278
282
|
"vitest": "^4.1.10"
|
|
279
283
|
},
|
|
280
284
|
"dependencies": {
|
|
281
|
-
"@wrongstack/tools": "0.291.
|
|
282
|
-
"@wrongstack/core": "0.291.
|
|
285
|
+
"@wrongstack/tools": "0.291.2",
|
|
286
|
+
"@wrongstack/core": "0.291.2"
|
|
283
287
|
},
|
|
284
288
|
"scripts": {
|
|
285
289
|
"build": "node ../../scripts/build-package.mjs",
|