multicorn-shield 1.11.0 → 1.11.1
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/CHANGELOG.md +7 -0
- package/dist/multicorn-proxy.js +100 -12
- package/dist/multicorn-shield.js +95 -11
- package/dist/server.js +3499 -0
- package/dist/shield-extension.js +1 -1
- package/package.json +2 -2
package/dist/shield-extension.js
CHANGED
|
@@ -22518,7 +22518,7 @@ async function writeExtensionBackup(claudeDesktopConfigPath, mcpServers) {
|
|
|
22518
22518
|
|
|
22519
22519
|
// package.json
|
|
22520
22520
|
var package_default = {
|
|
22521
|
-
version: "1.11.
|
|
22521
|
+
version: "1.11.1"};
|
|
22522
22522
|
|
|
22523
22523
|
// src/package-meta.ts
|
|
22524
22524
|
var PACKAGE_VERSION = package_default.version;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "multicorn-shield",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "The control layer for AI agents: permissions, consent, spending limits, and audit logging.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Multicorn AI Pty Ltd",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"node": ">=20"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
|
-
"build": "tsup",
|
|
63
|
+
"build": "tsup && node scripts/stage-local-proxy-server.mjs",
|
|
64
64
|
"dev": "tsup --watch",
|
|
65
65
|
"lint": "eslint . --no-warn-ignored && prettier --check .",
|
|
66
66
|
"lint:fix": "eslint --fix . --no-warn-ignored && prettier --write .",
|