@agenticprimitives/mcp-runtime 0.1.0-alpha.2 → 0.1.0-alpha.3

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.
Files changed (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticprimitives/mcp-runtime",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.3",
4
4
  "description": "Delegation-aware authorization middleware around the official MCP TypeScript SDK. The decision layer, not the SDK.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -35,26 +35,17 @@
35
35
  "spec.md",
36
36
  "README.md"
37
37
  ],
38
- "scripts": {
39
- "build": "tsc -p tsconfig.build.json",
40
- "typecheck": "tsc -p tsconfig.json --noEmit",
41
- "test": "vitest run",
42
- "test:unit": "vitest run test/unit",
43
- "test:integration": "vitest run test/integration --passWithNoTests",
44
- "test:watch": "vitest",
45
- "clean": "rm -rf dist"
46
- },
47
38
  "publishConfig": {
48
39
  "access": "public"
49
40
  },
50
41
  "peerDependencies": {
51
- "@agenticprimitives/audit": "workspace:*",
52
- "@agenticprimitives/delegation": "workspace:*",
53
- "@agenticprimitives/key-custody": "workspace:*",
54
- "@agenticprimitives/tool-policy": "workspace:*",
55
- "@agenticprimitives/types": "workspace:*",
56
42
  "@modelcontextprotocol/sdk": ">=1.29.0 <2",
57
- "viem": "^2.50.0"
43
+ "viem": "^2.50.0",
44
+ "@agenticprimitives/audit": "0.1.0-alpha.3",
45
+ "@agenticprimitives/delegation": "0.1.0-alpha.3",
46
+ "@agenticprimitives/key-custody": "0.1.0-alpha.3",
47
+ "@agenticprimitives/tool-policy": "0.1.0-alpha.3",
48
+ "@agenticprimitives/types": "0.1.0-alpha.3"
58
49
  },
59
50
  "devDependencies": {
60
51
  "@types/node": "^22.7.0",
@@ -66,5 +57,14 @@
66
57
  "delegation",
67
58
  "authorization",
68
59
  "agentic"
69
- ]
70
- }
60
+ ],
61
+ "scripts": {
62
+ "build": "tsc -p tsconfig.build.json",
63
+ "typecheck": "tsc -p tsconfig.json --noEmit",
64
+ "test": "vitest run",
65
+ "test:unit": "vitest run test/unit",
66
+ "test:integration": "vitest run test/integration --passWithNoTests",
67
+ "test:watch": "vitest",
68
+ "clean": "rm -rf dist"
69
+ }
70
+ }