How would I approach two XDN projects with one codebase?

I have a scenario where I would like to support two separate XDN projects with one codebase. A bulk of the experience will be the same for the user with the exception of unlocked functionality that is driven behind environment variable flags.

Given that the project name is created via the value defined in the package.json, is it possible to create two separate projects using the same codebase?

Thanks

The name of the site being deployed is inferred from the name property of package.json, but can be supplied as the --site option when doing a deploy: Moovweb XDN Documentation - CLI

So you can deploy the same code base to 2 different sites.

Thanks for confirming!