fastgrc-openclaw 1.0.16 → 1.0.17

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/bin.js CHANGED
@@ -278,3 +278,4 @@ main().catch((err) => {
278
278
  `);
279
279
  process.exit(0);
280
280
  });
281
+ module.exports = module.exports.default ?? module.exports;
package/dist/index.js CHANGED
@@ -181,3 +181,4 @@ function FastGRCPlugin(options) {
181
181
  evaluate,
182
182
  resolveApiKey
183
183
  });
184
+ module.exports = module.exports.default ?? module.exports;
package/dist/plugin.js CHANGED
@@ -148,3 +148,4 @@ var pluginEntry = {
148
148
  };
149
149
  process.stderr.write("[fastgrc] plugin export shape: " + JSON.stringify({ type: typeof pluginEntry, registerType: typeof pluginEntry.register }) + "\n");
150
150
  var plugin_default = pluginEntry;
151
+ module.exports = module.exports.default ?? module.exports;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastgrc-openclaw",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "FastGRC agent compliance plugin for OpenClaw — evaluates every tool call against your policy before it executes",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",