chore: minimal Unity-Package project manifest (deps via package.json)#30
Merged
Conversation
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 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Unity authoring project’s Packages/manifest.json to keep only built-in com.unity.modules.* entries, relying on the embedded package’s package.json (and the OpenUPM scoped registry) to bring in non-engine dependencies transitively.
Changes:
- Removed explicit Unity Package Manager dependencies from the project manifest, leaving only engine module dependencies.
- Kept the OpenUPM scoped registry configuration in the project manifest for dependency resolution.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
2
to
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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make the Unity-Package authoring project carry no explicit dependencies — only
com.unity.modules.*engine modules remain. Everything else (com.ivanmurzak.unity.mcp, com.unity.test-framework, the feature package, IDE/template cruft) now resolves transitively from the embedded package's ownpackage.jsonvia the OpenUPM scoped registry. Mirrors the maintainer's Cinemachine change. Package source-of-truth = package.json; the project manifest no longer duplicates/pins deps.Note: only the project manifest changes (not the embedded package). Verified each package's asmdefs don't reference the removed entries.
🤖 Generated with Claude Code