Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-04-19 00:46:00 +02:00
parent ce19d00de3
commit a11d88d365
14 changed files with 2947 additions and 76 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "social-io-swiftapp-tooling",
"private": true,
"packageManager": "pnpm@10.18.1",
"scripts": {
"swift:doctor": "tsswift doctor --path SocialIO/SocialIO.xcodeproj",
"swift:emulators": "tsswift emulators --path SocialIO/SocialIO.xcodeproj",
"swift:build": "tsswift build --path SocialIO/SocialIO.xcodeproj",
"swift:build:macos": "tsswift build --path SocialIO/SocialIO.xcodeproj --platform macos",
"swift:test": "tsswift test --path SocialIO/SocialIO.xcodeproj",
"swift:run": "tsswift run --path SocialIO/SocialIO.xcodeproj",
"swift:launch": "tsswift launch --path SocialIO/SocialIO.xcodeproj",
"swift:command:inbox": "tsswift command --path SocialIO/SocialIO.xcodeproj --route socialio://mailbox/inbox",
"swift:screenshots:ios": "tsswift screenshots --path SocialIO/SocialIO.xcodeproj --platform ios",
"swift:screenshots:ipad": "tsswift screenshots --path SocialIO/SocialIO.xcodeproj --platform ipad",
"swift:screenshots:macos": "tsswift screenshots --path SocialIO/SocialIO.xcodeproj --platform macos",
"swift:review": "tsswift review --path SocialIO/SocialIO.xcodeproj"
},
"devDependencies": {
"@git.zone/tsswift": "0.3.0"
}
}