@athletic/capacitor-firebase-realtime 5.0.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +5 -5
- package/android/src/main/java/net/athletic/firebase/realtime/CapacitorFirebaseRealtimePlugin.java +8 -5
- package/dist/esm/definitions.d.ts +15 -15
- package/dist/esm/definitions.js +1 -1
- package/dist/esm/index.d.ts +4 -4
- package/dist/esm/index.js +6 -6
- package/dist/esm/web.d.ts +17 -17
- package/dist/esm/web.js +17 -17
- package/dist/plugin.cjs.js +17 -19
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +17 -19
- package/dist/plugin.js.map +1 -1
- package/package.json +15 -14
package/android/build.gradle
CHANGED
|
@@ -11,18 +11,18 @@ buildscript {
|
|
|
11
11
|
mavenCentral()
|
|
12
12
|
}
|
|
13
13
|
dependencies {
|
|
14
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
14
|
+
classpath 'com.android.tools.build:gradle:8.2.1'
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
apply plugin: 'com.android.library'
|
|
19
19
|
|
|
20
|
-
android {
|
|
21
|
-
namespace "net.athletic.firebase.realtime"
|
|
22
|
-
|
|
20
|
+
android {
|
|
21
|
+
namespace "net.athletic.firebase.realtime"
|
|
22
|
+
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
|
|
23
23
|
defaultConfig {
|
|
24
24
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
|
|
25
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion :
|
|
25
|
+
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
|
|
26
26
|
versionCode 1
|
|
27
27
|
versionName "1.0"
|
|
28
28
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
package/android/src/main/java/net/athletic/firebase/realtime/CapacitorFirebaseRealtimePlugin.java
CHANGED
|
@@ -38,9 +38,9 @@ Examples here:
|
|
|
38
38
|
|
|
39
39
|
@CapacitorPlugin(name = "CapacitorFirebaseRealtime")
|
|
40
40
|
public class CapacitorFirebaseRealtimePlugin extends Plugin {
|
|
41
|
-
private FirebaseAuth fireAuth;
|
|
42
|
-
private FirebaseDatabase fireDb;
|
|
43
|
-
private FirebaseUser currentUser = null;
|
|
41
|
+
private static FirebaseAuth fireAuth = null;
|
|
42
|
+
private static FirebaseDatabase fireDb = null;
|
|
43
|
+
private static FirebaseUser currentUser = null;
|
|
44
44
|
|
|
45
45
|
private static final String TAG = "AnetFirebaseRealtime";
|
|
46
46
|
|
|
@@ -48,13 +48,16 @@ public class CapacitorFirebaseRealtimePlugin extends Plugin {
|
|
|
48
48
|
public void load() {
|
|
49
49
|
super.load();
|
|
50
50
|
|
|
51
|
+
if(fireDb == null) {
|
|
52
|
+
fireDb = FirebaseDatabase.getInstance();
|
|
53
|
+
fireDb.setPersistenceEnabled(true);
|
|
54
|
+
}
|
|
55
|
+
|
|
51
56
|
fireAuth = FirebaseAuth.getInstance();
|
|
52
|
-
fireDb = FirebaseDatabase.getInstance();
|
|
53
57
|
currentUser = fireAuth.getCurrentUser();
|
|
54
58
|
|
|
55
59
|
Log.d(TAG, "loaded");
|
|
56
60
|
|
|
57
|
-
fireDb.setPersistenceEnabled(true);
|
|
58
61
|
}
|
|
59
62
|
|
|
60
63
|
@PluginMethod()
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export interface CapacitorFirebaseRealtimePlugin {
|
|
2
|
-
signOut(): Promise<null>;
|
|
3
|
-
initialize(options: {
|
|
4
|
-
signedInUserId: number;
|
|
5
|
-
}): Promise<{
|
|
6
|
-
signedIn: boolean;
|
|
7
|
-
}>;
|
|
8
|
-
signInWithCustomToken(options: {
|
|
9
|
-
token: string;
|
|
10
|
-
}): Promise<null>;
|
|
11
|
-
updateChildren(options: {
|
|
12
|
-
path: string;
|
|
13
|
-
data: any;
|
|
14
|
-
}): Promise<null>;
|
|
15
|
-
}
|
|
1
|
+
export interface CapacitorFirebaseRealtimePlugin {
|
|
2
|
+
signOut(): Promise<null>;
|
|
3
|
+
initialize(options: {
|
|
4
|
+
signedInUserId: number;
|
|
5
|
+
}): Promise<{
|
|
6
|
+
signedIn: boolean;
|
|
7
|
+
}>;
|
|
8
|
+
signInWithCustomToken(options: {
|
|
9
|
+
token: string;
|
|
10
|
+
}): Promise<null>;
|
|
11
|
+
updateChildren(options: {
|
|
12
|
+
path: string;
|
|
13
|
+
data: any;
|
|
14
|
+
}): Promise<null>;
|
|
15
|
+
}
|
package/dist/esm/definitions.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
2
2
|
//# sourceMappingURL=definitions.js.map
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CapacitorFirebaseRealtimePlugin } from './definitions';
|
|
2
|
-
declare const CapacitorFirebaseRealtime: CapacitorFirebaseRealtimePlugin;
|
|
3
|
-
export * from './definitions';
|
|
4
|
-
export { CapacitorFirebaseRealtime };
|
|
1
|
+
import type { CapacitorFirebaseRealtimePlugin } from './definitions';
|
|
2
|
+
declare const CapacitorFirebaseRealtime: CapacitorFirebaseRealtimePlugin;
|
|
3
|
+
export * from './definitions';
|
|
4
|
+
export { CapacitorFirebaseRealtime };
|
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { registerPlugin } from '@capacitor/core';
|
|
2
|
-
const CapacitorFirebaseRealtime = registerPlugin('CapacitorFirebaseRealtime', {
|
|
3
|
-
web: () => import('./web').then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
4
|
-
});
|
|
5
|
-
export * from './definitions';
|
|
6
|
-
export { CapacitorFirebaseRealtime };
|
|
1
|
+
import { registerPlugin } from '@capacitor/core';
|
|
2
|
+
const CapacitorFirebaseRealtime = registerPlugin('CapacitorFirebaseRealtime', {
|
|
3
|
+
web: () => import('./web').then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
4
|
+
});
|
|
5
|
+
export * from './definitions';
|
|
6
|
+
export { CapacitorFirebaseRealtime };
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/web.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { WebPlugin } from '@capacitor/core';
|
|
2
|
-
import type { CapacitorFirebaseRealtimePlugin } from './definitions';
|
|
3
|
-
export declare class CapacitorFirebaseRealtimeWeb extends WebPlugin implements CapacitorFirebaseRealtimePlugin {
|
|
4
|
-
signOut(): Promise<null>;
|
|
5
|
-
initialize(options: {
|
|
6
|
-
signedInUserId: number;
|
|
7
|
-
}): Promise<{
|
|
8
|
-
signedIn: boolean;
|
|
9
|
-
}>;
|
|
10
|
-
signInWithCustomToken(options: {
|
|
11
|
-
token: string;
|
|
12
|
-
}): Promise<null>;
|
|
13
|
-
updateChildren(options: {
|
|
14
|
-
path: string;
|
|
15
|
-
data: any;
|
|
16
|
-
}): Promise<null>;
|
|
17
|
-
}
|
|
1
|
+
import { WebPlugin } from '@capacitor/core';
|
|
2
|
+
import type { CapacitorFirebaseRealtimePlugin } from './definitions';
|
|
3
|
+
export declare class CapacitorFirebaseRealtimeWeb extends WebPlugin implements CapacitorFirebaseRealtimePlugin {
|
|
4
|
+
signOut(): Promise<null>;
|
|
5
|
+
initialize(options: {
|
|
6
|
+
signedInUserId: number;
|
|
7
|
+
}): Promise<{
|
|
8
|
+
signedIn: boolean;
|
|
9
|
+
}>;
|
|
10
|
+
signInWithCustomToken(options: {
|
|
11
|
+
token: string;
|
|
12
|
+
}): Promise<null>;
|
|
13
|
+
updateChildren(options: {
|
|
14
|
+
path: string;
|
|
15
|
+
data: any;
|
|
16
|
+
}): Promise<null>;
|
|
17
|
+
}
|
package/dist/esm/web.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { WebPlugin } from '@capacitor/core';
|
|
2
|
-
export class CapacitorFirebaseRealtimeWeb extends WebPlugin {
|
|
3
|
-
async signOut() {
|
|
4
|
-
return null;
|
|
5
|
-
}
|
|
6
|
-
async initialize(options) {
|
|
7
|
-
JSON.stringify(options);
|
|
8
|
-
return { signedIn: false };
|
|
9
|
-
}
|
|
10
|
-
async signInWithCustomToken(options) {
|
|
11
|
-
JSON.stringify(options);
|
|
12
|
-
return null;
|
|
13
|
-
}
|
|
14
|
-
async updateChildren(options) {
|
|
15
|
-
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
16
|
-
}
|
|
17
|
-
}
|
|
1
|
+
import { WebPlugin } from '@capacitor/core';
|
|
2
|
+
export class CapacitorFirebaseRealtimeWeb extends WebPlugin {
|
|
3
|
+
async signOut() {
|
|
4
|
+
return null;
|
|
5
|
+
}
|
|
6
|
+
async initialize(options) {
|
|
7
|
+
JSON.stringify(options);
|
|
8
|
+
return { signedIn: false };
|
|
9
|
+
}
|
|
10
|
+
async signInWithCustomToken(options) {
|
|
11
|
+
JSON.stringify(options);
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
async updateChildren(options) {
|
|
15
|
+
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
18
|
//# sourceMappingURL=web.js.map
|
package/dist/plugin.cjs.js
CHANGED
|
@@ -1,28 +1,26 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var core = require('@capacitor/core');
|
|
6
4
|
|
|
7
|
-
const CapacitorFirebaseRealtime = core.registerPlugin('CapacitorFirebaseRealtime', {
|
|
8
|
-
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
5
|
+
const CapacitorFirebaseRealtime = core.registerPlugin('CapacitorFirebaseRealtime', {
|
|
6
|
+
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
9
7
|
});
|
|
10
8
|
|
|
11
|
-
class CapacitorFirebaseRealtimeWeb extends core.WebPlugin {
|
|
12
|
-
async signOut() {
|
|
13
|
-
return null;
|
|
14
|
-
}
|
|
15
|
-
async initialize(options) {
|
|
16
|
-
JSON.stringify(options);
|
|
17
|
-
return { signedIn: false };
|
|
18
|
-
}
|
|
19
|
-
async signInWithCustomToken(options) {
|
|
20
|
-
JSON.stringify(options);
|
|
21
|
-
return null;
|
|
22
|
-
}
|
|
23
|
-
async updateChildren(options) {
|
|
24
|
-
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
25
|
-
}
|
|
9
|
+
class CapacitorFirebaseRealtimeWeb extends core.WebPlugin {
|
|
10
|
+
async signOut() {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
async initialize(options) {
|
|
14
|
+
JSON.stringify(options);
|
|
15
|
+
return { signedIn: false };
|
|
16
|
+
}
|
|
17
|
+
async signInWithCustomToken(options) {
|
|
18
|
+
JSON.stringify(options);
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
async updateChildren(options) {
|
|
22
|
+
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
23
|
+
}
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
var web = /*#__PURE__*/Object.freeze({
|
package/dist/plugin.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst CapacitorFirebaseRealtime = registerPlugin('CapacitorFirebaseRealtime', {\n web: () => import('./web').then(m => new m.CapacitorFirebaseRealtimeWeb()),\n});\nexport * from './definitions';\nexport { CapacitorFirebaseRealtime };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class CapacitorFirebaseRealtimeWeb extends WebPlugin {\n async signOut() {\n return null;\n }\n async initialize(options) {\n JSON.stringify(options);\n return { signedIn: false };\n }\n async signInWithCustomToken(options) {\n JSON.stringify(options);\n return null;\n }\n async updateChildren(options) {\n throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;;AACK,MAAC,yBAAyB,GAAGA,mBAAc,CAAC,2BAA2B,EAAE;AAC9E,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,4BAA4B,EAAE,CAAC;AAC9E,CAAC;;ACFM,MAAM,4BAA4B,SAASC,cAAS,CAAC;AAC5D,IAAI,MAAM,OAAO,GAAG;AACpB,QAAQ,OAAO,IAAI,CAAC;AACpB,KAAK;AACL,IAAI,MAAM,UAAU,CAAC,OAAO,EAAE;AAC9B,QAAQ,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;AAChC,QAAQ,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;AACnC,KAAK;AACL,IAAI,MAAM,qBAAqB,CAAC,OAAO,EAAE;AACzC,QAAQ,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;AAChC,QAAQ,OAAO,IAAI,CAAC;AACpB,KAAK;AACL,IAAI,MAAM,cAAc,CAAC,OAAO,EAAE;AAClC,QAAQ,OAAO,oFAAoF,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE;AAC/H,KAAK;AACL;;;;;;;;;"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
var capacitorCapacitorFirebaseRealtime = (function (exports, core) {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
const CapacitorFirebaseRealtime = core.registerPlugin('CapacitorFirebaseRealtime', {
|
|
5
|
-
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
4
|
+
const CapacitorFirebaseRealtime = core.registerPlugin('CapacitorFirebaseRealtime', {
|
|
5
|
+
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.CapacitorFirebaseRealtimeWeb()),
|
|
6
6
|
});
|
|
7
7
|
|
|
8
|
-
class CapacitorFirebaseRealtimeWeb extends core.WebPlugin {
|
|
9
|
-
async signOut() {
|
|
10
|
-
return null;
|
|
11
|
-
}
|
|
12
|
-
async initialize(options) {
|
|
13
|
-
JSON.stringify(options);
|
|
14
|
-
return { signedIn: false };
|
|
15
|
-
}
|
|
16
|
-
async signInWithCustomToken(options) {
|
|
17
|
-
JSON.stringify(options);
|
|
18
|
-
return null;
|
|
19
|
-
}
|
|
20
|
-
async updateChildren(options) {
|
|
21
|
-
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
22
|
-
}
|
|
8
|
+
class CapacitorFirebaseRealtimeWeb extends core.WebPlugin {
|
|
9
|
+
async signOut() {
|
|
10
|
+
return null;
|
|
11
|
+
}
|
|
12
|
+
async initialize(options) {
|
|
13
|
+
JSON.stringify(options);
|
|
14
|
+
return { signedIn: false };
|
|
15
|
+
}
|
|
16
|
+
async signInWithCustomToken(options) {
|
|
17
|
+
JSON.stringify(options);
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
async updateChildren(options) {
|
|
21
|
+
throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));
|
|
22
|
+
}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
var web = /*#__PURE__*/Object.freeze({
|
|
@@ -29,8 +29,6 @@ var capacitorCapacitorFirebaseRealtime = (function (exports, core) {
|
|
|
29
29
|
|
|
30
30
|
exports.CapacitorFirebaseRealtime = CapacitorFirebaseRealtime;
|
|
31
31
|
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
|
|
34
32
|
return exports;
|
|
35
33
|
|
|
36
34
|
})({}, capacitorExports);
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst CapacitorFirebaseRealtime = registerPlugin('CapacitorFirebaseRealtime', {\n web: () => import('./web').then(m => new m.CapacitorFirebaseRealtimeWeb()),\n});\nexport * from './definitions';\nexport { CapacitorFirebaseRealtime };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class CapacitorFirebaseRealtimeWeb extends WebPlugin {\n async signOut() {\n return null;\n }\n async initialize(options) {\n JSON.stringify(options);\n return { signedIn: false };\n }\n async signInWithCustomToken(options) {\n JSON.stringify(options);\n return null;\n }\n async updateChildren(options) {\n throw ('CapacitorFirebaseRealtimeWeb.updateChildren: Web version has not been implemented ' + JSON.stringify(options));\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;AACK,UAAC,yBAAyB,GAAGA,mBAAc,CAAC,2BAA2B,EAAE;IAC9E,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,4BAA4B,EAAE,CAAC;IAC9E,CAAC;;ICFM,MAAM,4BAA4B,SAASC,cAAS,CAAC;IAC5D,IAAI,MAAM,OAAO,GAAG;IACpB,QAAQ,OAAO,IAAI,CAAC;IACpB,KAAK;IACL,IAAI,MAAM,UAAU,CAAC,OAAO,EAAE;IAC9B,QAAQ,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACnC,KAAK;IACL,IAAI,MAAM,qBAAqB,CAAC,OAAO,EAAE;IACzC,QAAQ,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,OAAO,IAAI,CAAC;IACpB,KAAK;IACL,IAAI,MAAM,cAAc,CAAC,OAAO,EAAE;IAClC,QAAQ,OAAO,oFAAoF,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE;IAC/H,KAAK;IACL;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athletic/capacitor-firebase-realtime",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Capacitor Firebase Realtime plugin",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
7
|
+
"type": "module",
|
|
7
8
|
"types": "dist/esm/index.d.ts",
|
|
8
9
|
"unpkg": "dist/plugin.js",
|
|
9
10
|
"files": [
|
|
@@ -44,23 +45,23 @@
|
|
|
44
45
|
"prepublishOnly": "npm run build"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
|
-
"@capacitor/android": "^
|
|
48
|
-
"@capacitor/core": "^
|
|
49
|
-
"@capacitor/docgen": "^0.
|
|
50
|
-
"@capacitor/ios": "^
|
|
48
|
+
"@capacitor/android": "^6.0.0",
|
|
49
|
+
"@capacitor/core": "^6.0.0",
|
|
50
|
+
"@capacitor/docgen": "^0.2.1",
|
|
51
|
+
"@capacitor/ios": "^6.0.0",
|
|
51
52
|
"@ionic/eslint-config": "^0.3.0",
|
|
52
|
-
"@ionic/prettier-config": "^
|
|
53
|
+
"@ionic/prettier-config": "^3.0.0",
|
|
53
54
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
54
|
-
"eslint": "^
|
|
55
|
-
"prettier": "~2.
|
|
56
|
-
"prettier-plugin-java": "~1.0
|
|
57
|
-
"rimraf": "^
|
|
58
|
-
"rollup": "^
|
|
59
|
-
"swiftlint": "^1.0.
|
|
60
|
-
"typescript": "~4.
|
|
55
|
+
"eslint": "^8.42.0",
|
|
56
|
+
"prettier": "~2.8.8",
|
|
57
|
+
"prettier-plugin-java": "~2.1.0",
|
|
58
|
+
"rimraf": "^5.0.1",
|
|
59
|
+
"rollup": "^3.25.1",
|
|
60
|
+
"swiftlint": "^1.0.2",
|
|
61
|
+
"typescript": "~5.4.2"
|
|
61
62
|
},
|
|
62
63
|
"peerDependencies": {
|
|
63
|
-
"@capacitor/core": "^
|
|
64
|
+
"@capacitor/core": "^6.0.0"
|
|
64
65
|
},
|
|
65
66
|
"prettier": "@ionic/prettier-config",
|
|
66
67
|
"swiftlint": "@ionic/swiftlint-config",
|