Files
bus_sg_app/package.json
T
furyhawk d448ee2854 Add initial iOS project setup with LaunchScreen and Main storyboards, Info.plist, and SPM configuration
- Created LaunchScreen.storyboard for app launch interface.
- Added Main.storyboard for the main app interface with a bridge view controller.
- Initialized Info.plist with necessary app configuration settings.
- Set up .gitignore for SPM dependencies and build artifacts.
- Created Package.swift for managing SPM dependencies, including Capacitor and Cordova.
- Added README.md for CapApp-SPM package documentation.
- Implemented a simple CapApp-SPM.swift file to indicate the app is a Capacitor app.
- Introduced debug.xcconfig to manage debug configuration settings.
2026-06-06 19:50:18 +08:00

32 lines
865 B
JSON

{
"name": "bus-sg-app",
"version": "1.1.0",
"private": true,
"description": "Singapore bus transport app powered by OpenAPI gateway",
"type": "module",
"scripts": {
"dev": "vite dev --host --port 3000",
"build": "vite build",
"preview": "vite preview --host --port 3000",
"start": "vite preview --host --port 3000",
"cap:copy": "cap copy",
"cap:sync": "cap sync",
"cap:open:android": "cap open android",
"cap:open:ios": "cap open ios",
"mobile:build": "bun run build && cap sync"
},
"devDependencies": {
"@capacitor/cli": "^8.3.4",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.61.1",
"svelte": "^5.56.0",
"vite": "^7.0.0"
},
"dependencies": {
"@capacitor/android": "^8.3.4",
"@capacitor/core": "^8.3.4",
"@capacitor/ios": "^8.3.4",
"leaflet": "^1.9.4"
}
}