From e1e2da5cdfea0b21fe96affc5dff1b5d6e56f576 Mon Sep 17 00:00:00 2001 From: Ivan Murzak Date: Mon, 8 Jun 2026 14:17:30 -0700 Subject: [PATCH] chore(manifest): drop explicit project deps; resolve via package.json The Unity-Package authoring project no longer declares explicit dependencies (mcp, test-framework, the feature package). Only com.unity.modules.* engine modules remain; everything else resolves transitively from the embedded package's package.json via the OpenUPM scoped registry. Co-Authored-By: Claude Opus 4.8 --- Unity-Package/Packages/manifest.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Unity-Package/Packages/manifest.json b/Unity-Package/Packages/manifest.json index 3842b66..0815d25 100644 --- a/Unity-Package/Packages/manifest.json +++ b/Unity-Package/Packages/manifest.json @@ -1,8 +1,5 @@ { "dependencies": { - "com.ivanmurzak.unity.mcp": "0.79.1", - "com.unity.ide.visualstudio": "2.0.26", - "com.unity.test-framework": "1.1.33", "com.unity.modules.assetbundle": "1.0.0", "com.unity.modules.imageconversion": "1.0.0", "com.unity.modules.imgui": "1.0.0", @@ -31,4 +28,4 @@ "testables": [ "com.ivanmurzak.unity.mcp" ] -} \ No newline at end of file +}