- 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
25 lines
726 B
JSON
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"
|
|
}
|
|
}
|