@sanctuary-framework/mcp-server 0.2.0 → 0.3.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/README.md +54 -7
- package/dist/cli.cjs +3761 -171
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3764 -174
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +3735 -169
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +965 -189
- package/dist/index.d.ts +965 -189
- package/dist/index.js +3721 -173
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanctuary-framework/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Sanctuary Framework MCP Server — sovereignty infrastructure for agent harnesses",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"start": "node dist/cli.js",
|
|
28
28
|
"test": "vitest run",
|
|
29
29
|
"test:watch": "vitest",
|
|
30
|
-
"test:security": "vitest run
|
|
31
|
-
"test:integration": "vitest run
|
|
32
|
-
"test:conformance": "vitest run
|
|
30
|
+
"test:security": "vitest run test/security",
|
|
31
|
+
"test:integration": "vitest run test/integration",
|
|
32
|
+
"test:conformance": "vitest run test/conformance",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
34
34
|
"lint": "eslint src/",
|
|
35
35
|
"clean": "rm -rf dist",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"vitest": "^3.0.0"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
52
|
+
"node": ">=22.0.0"
|
|
53
53
|
},
|
|
54
54
|
"license": "Apache-2.0",
|
|
55
55
|
"repository": {
|