From 92bd6384e3d0d424e97ef36802f1b09f44e11edf Mon Sep 17 00:00:00 2001 From: Ivan Murzak Date: Mon, 8 Jun 2026 14:16:56 -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 | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Unity-Package/Packages/manifest.json b/Unity-Package/Packages/manifest.json index ace4613..b368c54 100644 --- a/Unity-Package/Packages/manifest.json +++ b/Unity-Package/Packages/manifest.json @@ -1,13 +1,5 @@ { "dependencies": { - "com.ivanmurzak.unity.mcp": "0.79.1", - "com.unity.ide.visualstudio": "2.0.22", - "com.unity.ide.vscode": "1.2.5", - "com.unity.test-framework": "1.1.33", - "com.unity.textmeshpro": "3.0.7", - "com.unity.timeline": "1.7.7", - "com.unity.ugui": "1.0.0", - "com.unity.xr.legacyinputhelpers": "2.1.12", "com.unity.modules.animation": "1.0.0", "com.unity.modules.assetbundle": "1.0.0", "com.unity.modules.audio": "1.0.0", @@ -42,4 +34,4 @@ "testables": [ "com.ivanmurzak.unity.mcp" ] -} \ No newline at end of file +}