To create a Swift Package, open a Terminal then create an empty folder:
mkdir AwesomeProject
cd AwesomeProject
And init a Git repository:
git init
Then create the package itself. One could create the package structure manually but there's a simple way using the CLI command.
If you want to ...