Files
shopify-ai-backup/android-app/package.json
Developer eced327702 Fix capacitor build: Implement proper backend connectivity and authentication
- Update BACKEND_BASE_URL to plugincompass.com:9445
- Add comprehensive authentication system (login, signup, logout)
- Implement JWT token management with automatic refresh
- Add plugin/app management API (CRUD operations)
- Add session management for chat/builder
- Update mobile UI with real backend integration
- Add user account and usage tracking
- Enable plugin loading and editing from backend
- Fix module type for ES6 support
2026-02-16 22:02:46 +00:00

25 lines
726 B
JSON

{
"name": "plugin-compass-android",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare-ui": "node ./scripts/sync-ui.js",
"build": "npm run prepare-ui && npx cap sync android",
"cap:init": "npx cap init 'Plugin Compass' com.plugincompass.app --web-dir www",
"cap:add": "npx cap add android",
"cap:sync": "npx cap sync android",
"cap:open": "npx cap open android",
"android:build": "npm run build && cd android && ./gradlew assembleDebug"
},
"dependencies": {
"@capacitor/android": "^5.6.0",
"@capacitor/core": "^5.6.0",
"@capacitor/preferences": "^5.0.7"
},
"devDependencies": {
"@capacitor/cli": "^5.6.0",
"fs-extra": "^11.2.0"
}
}