@capgo/native-market 5.0.3 → 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 +3 -3
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/android/gradlew +4 -1
- package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +1 -2
- package/dist/esm/web.d.ts +5 -5
- package/dist/esm/web.js +10 -10
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +10 -10
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +10 -10
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/Plugin.swift +21 -10
- package/ios/PluginTests/PluginTests.swift +0 -10
- package/package.json +19 -22
package/android/build.gradle
CHANGED
|
@@ -11,7 +11,7 @@ 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
|
|
|
@@ -19,10 +19,10 @@ apply plugin: 'com.android.library'
|
|
|
19
19
|
|
|
20
20
|
android {
|
|
21
21
|
namespace "com.getcapacitor.community.nativemarket.nativemarket"
|
|
22
|
-
|
|
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"
|
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
|
+
validateDistributionUrl=true
|
|
5
6
|
zipStoreBase=GRADLE_USER_HOME
|
|
6
7
|
zipStorePath=wrapper/dists
|
package/android/gradlew
CHANGED
|
@@ -130,10 +130,13 @@ location of your Java installation."
|
|
|
130
130
|
fi
|
|
131
131
|
else
|
|
132
132
|
JAVACMD=java
|
|
133
|
-
|
|
133
|
+
if ! command -v java >/dev/null 2>&1
|
|
134
|
+
then
|
|
135
|
+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
|
134
136
|
|
|
135
137
|
Please set the JAVA_HOME variable in your environment to match the
|
|
136
138
|
location of your Java installation."
|
|
139
|
+
fi
|
|
137
140
|
fi
|
|
138
141
|
|
|
139
142
|
# Increase the maximum file descriptors if we can.
|
|
@@ -19,8 +19,7 @@ public class ExampleInstrumentedTest {
|
|
|
19
19
|
@Test
|
|
20
20
|
public void useAppContext() throws Exception {
|
|
21
21
|
// Context of the app under test.
|
|
22
|
-
Context appContext = InstrumentationRegistry
|
|
23
|
-
.getInstrumentation()
|
|
22
|
+
Context appContext = InstrumentationRegistry.getInstrumentation()
|
|
24
23
|
.getTargetContext();
|
|
25
24
|
|
|
26
25
|
assertEquals("com.getcapacitor.android", appContext.getPackageName());
|
package/dist/esm/web.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { WebPlugin } from "@capacitor/core";
|
|
2
2
|
import type { NativeMarketPlugin } from "./definitions";
|
|
3
3
|
export declare class NativeMarketWeb extends WebPlugin implements NativeMarketPlugin {
|
|
4
|
-
openStoreListing(
|
|
4
|
+
openStoreListing(options: {
|
|
5
5
|
appId: string;
|
|
6
6
|
country?: string;
|
|
7
7
|
}): Promise<void>;
|
|
8
|
-
openDevPage(
|
|
8
|
+
openDevPage(options: {
|
|
9
9
|
devId: string;
|
|
10
10
|
}): Promise<void>;
|
|
11
|
-
openCollection(
|
|
11
|
+
openCollection(options: {
|
|
12
12
|
name: string;
|
|
13
13
|
}): Promise<void>;
|
|
14
|
-
openEditorChoicePage(
|
|
14
|
+
openEditorChoicePage(options: {
|
|
15
15
|
editorChoice: string;
|
|
16
16
|
}): Promise<void>;
|
|
17
|
-
search(
|
|
17
|
+
search(options: {
|
|
18
18
|
terms: string;
|
|
19
19
|
}): Promise<void>;
|
|
20
20
|
}
|
package/dist/esm/web.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { WebPlugin } from "@capacitor/core";
|
|
2
2
|
export class NativeMarketWeb extends WebPlugin {
|
|
3
|
-
openStoreListing(
|
|
4
|
-
throw new Error("Method not implemented.");
|
|
3
|
+
openStoreListing(options) {
|
|
4
|
+
throw new Error("Method not implemented." + options);
|
|
5
5
|
}
|
|
6
|
-
openDevPage(
|
|
7
|
-
throw new Error("Method not implemented.");
|
|
6
|
+
openDevPage(options) {
|
|
7
|
+
throw new Error("Method not implemented." + options);
|
|
8
8
|
}
|
|
9
|
-
openCollection(
|
|
10
|
-
throw new Error("Method not implemented.");
|
|
9
|
+
openCollection(options) {
|
|
10
|
+
throw new Error("Method not implemented." + options);
|
|
11
11
|
}
|
|
12
|
-
openEditorChoicePage(
|
|
13
|
-
throw new Error("Method not implemented.");
|
|
12
|
+
openEditorChoicePage(options) {
|
|
13
|
+
throw new Error("Method not implemented." + options);
|
|
14
14
|
}
|
|
15
|
-
search(
|
|
16
|
-
throw new Error("Method not implemented.");
|
|
15
|
+
search(options) {
|
|
16
|
+
throw new Error("Method not implemented." + options);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
//# sourceMappingURL=web.js.map
|
package/dist/esm/web.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAI5C,MAAM,OAAO,eAAgB,SAAQ,SAAS;IAC5C,gBAAgB,CAAC,
|
|
1
|
+
{"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAI5C,MAAM,OAAO,eAAgB,SAAQ,SAAS;IAC5C,gBAAgB,CAAC,OAGhB;QACC,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,WAAW,CAAC,OAA0B;QACpC,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,cAAc,CAAC,OAAyB;QACtC,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,oBAAoB,CAAC,OAAiC;QACpD,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,MAAM,CAAC,OAA0B;QAC/B,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IACvD,CAAC;CACF"}
|
package/dist/plugin.cjs.js
CHANGED
|
@@ -7,20 +7,20 @@ const NativeMarket = core.registerPlugin("NativeMarket", {
|
|
|
7
7
|
});
|
|
8
8
|
|
|
9
9
|
class NativeMarketWeb extends core.WebPlugin {
|
|
10
|
-
openStoreListing(
|
|
11
|
-
throw new Error("Method not implemented.");
|
|
10
|
+
openStoreListing(options) {
|
|
11
|
+
throw new Error("Method not implemented." + options);
|
|
12
12
|
}
|
|
13
|
-
openDevPage(
|
|
14
|
-
throw new Error("Method not implemented.");
|
|
13
|
+
openDevPage(options) {
|
|
14
|
+
throw new Error("Method not implemented." + options);
|
|
15
15
|
}
|
|
16
|
-
openCollection(
|
|
17
|
-
throw new Error("Method not implemented.");
|
|
16
|
+
openCollection(options) {
|
|
17
|
+
throw new Error("Method not implemented." + options);
|
|
18
18
|
}
|
|
19
|
-
openEditorChoicePage(
|
|
20
|
-
throw new Error("Method not implemented.");
|
|
19
|
+
openEditorChoicePage(options) {
|
|
20
|
+
throw new Error("Method not implemented." + options);
|
|
21
21
|
}
|
|
22
|
-
search(
|
|
23
|
-
throw new Error("Method not implemented.");
|
|
22
|
+
search(options) {
|
|
23
|
+
throw new Error("Method not implemented." + options);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
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\";\nconst NativeMarket = registerPlugin(\"NativeMarket\", {\n web: () => import(\"./web\").then((m) => new m.NativeMarketWeb()),\n});\nexport * from \"./definitions\";\nexport { NativeMarket };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from \"@capacitor/core\";\nexport class NativeMarketWeb extends WebPlugin {\n openStoreListing(
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from \"@capacitor/core\";\nconst NativeMarket = registerPlugin(\"NativeMarket\", {\n web: () => import(\"./web\").then((m) => new m.NativeMarketWeb()),\n});\nexport * from \"./definitions\";\nexport { NativeMarket };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from \"@capacitor/core\";\nexport class NativeMarketWeb extends WebPlugin {\n openStoreListing(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openDevPage(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openCollection(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openEditorChoicePage(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n search(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;;AACK,MAAC,YAAY,GAAGA,mBAAc,CAAC,cAAc,EAAE;AACpD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;AACnE,CAAC;;ACFM,MAAM,eAAe,SAASC,cAAS,CAAC;AAC/C,IAAI,gBAAgB,CAAC,OAAO,EAAE;AAC9B,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;AAC7D,KAAK;AACL,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;AAC7D,KAAK;AACL,IAAI,cAAc,CAAC,OAAO,EAAE;AAC5B,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;AAC7D,KAAK;AACL,IAAI,oBAAoB,CAAC,OAAO,EAAE;AAClC,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;AAC7D,KAAK;AACL,IAAI,MAAM,CAAC,OAAO,EAAE;AACpB,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;AAC7D,KAAK;AACL;;;;;;;;;"}
|
package/dist/plugin.js
CHANGED
|
@@ -6,20 +6,20 @@ var capacitorCapacitorUpdater = (function (exports, core) {
|
|
|
6
6
|
});
|
|
7
7
|
|
|
8
8
|
class NativeMarketWeb extends core.WebPlugin {
|
|
9
|
-
openStoreListing(
|
|
10
|
-
throw new Error("Method not implemented.");
|
|
9
|
+
openStoreListing(options) {
|
|
10
|
+
throw new Error("Method not implemented." + options);
|
|
11
11
|
}
|
|
12
|
-
openDevPage(
|
|
13
|
-
throw new Error("Method not implemented.");
|
|
12
|
+
openDevPage(options) {
|
|
13
|
+
throw new Error("Method not implemented." + options);
|
|
14
14
|
}
|
|
15
|
-
openCollection(
|
|
16
|
-
throw new Error("Method not implemented.");
|
|
15
|
+
openCollection(options) {
|
|
16
|
+
throw new Error("Method not implemented." + options);
|
|
17
17
|
}
|
|
18
|
-
openEditorChoicePage(
|
|
19
|
-
throw new Error("Method not implemented.");
|
|
18
|
+
openEditorChoicePage(options) {
|
|
19
|
+
throw new Error("Method not implemented." + options);
|
|
20
20
|
}
|
|
21
|
-
search(
|
|
22
|
-
throw new Error("Method not implemented.");
|
|
21
|
+
search(options) {
|
|
22
|
+
throw new Error("Method not implemented." + options);
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
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\";\nconst NativeMarket = registerPlugin(\"NativeMarket\", {\n web: () => import(\"./web\").then((m) => new m.NativeMarketWeb()),\n});\nexport * from \"./definitions\";\nexport { NativeMarket };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from \"@capacitor/core\";\nexport class NativeMarketWeb extends WebPlugin {\n openStoreListing(
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from \"@capacitor/core\";\nconst NativeMarket = registerPlugin(\"NativeMarket\", {\n web: () => import(\"./web\").then((m) => new m.NativeMarketWeb()),\n});\nexport * from \"./definitions\";\nexport { NativeMarket };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from \"@capacitor/core\";\nexport class NativeMarketWeb extends WebPlugin {\n openStoreListing(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openDevPage(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openCollection(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n openEditorChoicePage(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n search(options) {\n throw new Error(\"Method not implemented.\" + options);\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;AACK,UAAC,YAAY,GAAGA,mBAAc,CAAC,cAAc,EAAE;IACpD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;IACnE,CAAC;;ICFM,MAAM,eAAe,SAASC,cAAS,CAAC;IAC/C,IAAI,gBAAgB,CAAC,OAAO,EAAE;IAC9B,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IAC7D,KAAK;IACL,IAAI,WAAW,CAAC,OAAO,EAAE;IACzB,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IAC7D,KAAK;IACL,IAAI,cAAc,CAAC,OAAO,EAAE;IAC5B,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IAC7D,KAAK;IACL,IAAI,oBAAoB,CAAC,OAAO,EAAE;IAClC,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IAC7D,KAAK;IACL,IAAI,MAAM,CAAC,OAAO,EAAE;IACpB,QAAQ,MAAM,IAAI,KAAK,CAAC,yBAAyB,GAAG,OAAO,CAAC,CAAC;IAC7D,KAAK;IACL;;;;;;;;;;;;;;;"}
|
package/ios/Plugin/Plugin.swift
CHANGED
|
@@ -33,28 +33,39 @@ public class NativeMarket: CAPPlugin {
|
|
|
33
33
|
}
|
|
34
34
|
let country = call.getString("country") ?? ""
|
|
35
35
|
do {
|
|
36
|
-
let url = URL(string: "https://itunes.apple.com/lookup?bundleId=\(appId)&country=\(country)")
|
|
37
|
-
|
|
36
|
+
guard let url = URL(string: "https://itunes.apple.com/lookup?bundleId=\(appId)&country=\(country)") else {
|
|
37
|
+
throw NSError(domain: "Invalid URL", code: 0, userInfo: nil)
|
|
38
|
+
}
|
|
39
|
+
let data = try Data(contentsOf: url)
|
|
38
40
|
let decoder = JSONDecoder()
|
|
39
|
-
let
|
|
40
|
-
|
|
41
|
-
let
|
|
41
|
+
let apiResult = try decoder.decode(APIResult.self, from: data)
|
|
42
|
+
|
|
43
|
+
guard let firstApp = apiResult.apps.first else {
|
|
44
|
+
print("No apps found for given appId")
|
|
45
|
+
call.reject("No apps found for given appId")
|
|
46
|
+
return
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
let urlStore = "itms-apps://itunes.apple.com/app/id\(firstApp.trackId)"
|
|
50
|
+
guard let appUrl = URL(string: urlStore) else {
|
|
51
|
+
throw NSError(domain: "Invalid Store URL", code: 0, userInfo: nil)
|
|
52
|
+
}
|
|
42
53
|
|
|
43
54
|
DispatchQueue.main.async {
|
|
44
|
-
if UIApplication.shared.canOpenURL(appUrl
|
|
55
|
+
if UIApplication.shared.canOpenURL(appUrl) {
|
|
45
56
|
if #available(iOS 10.0, *) {
|
|
46
|
-
UIApplication.shared.open(appUrl
|
|
57
|
+
UIApplication.shared.open(appUrl, options: [:]) { (_) in
|
|
47
58
|
call.resolve()
|
|
48
59
|
}
|
|
49
60
|
} else {
|
|
50
|
-
UIApplication.shared.openURL(appUrl
|
|
61
|
+
UIApplication.shared.openURL(appUrl)
|
|
51
62
|
call.resolve()
|
|
52
63
|
}
|
|
53
64
|
}
|
|
54
65
|
}
|
|
55
66
|
} catch {
|
|
56
|
-
print("
|
|
57
|
-
call.reject("
|
|
67
|
+
print("Error: \(error.localizedDescription)")
|
|
68
|
+
call.reject("Error: \(error.localizedDescription)")
|
|
58
69
|
}
|
|
59
70
|
}
|
|
60
71
|
|
|
@@ -4,16 +4,6 @@ import Capacitor
|
|
|
4
4
|
|
|
5
5
|
class PluginTests: XCTestCase {
|
|
6
6
|
|
|
7
|
-
override func setUp() {
|
|
8
|
-
super.setUp()
|
|
9
|
-
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
override func tearDown() {
|
|
13
|
-
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
14
|
-
super.tearDown()
|
|
15
|
-
}
|
|
16
|
-
|
|
17
7
|
func testEcho() {
|
|
18
8
|
// This is an example of a functional test case for a plugin.
|
|
19
9
|
// Use XCTAssert and related functions to verify your tests produce the correct results.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/native-market",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "A native market plugin for linking to google play or app store.",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"verify:web": "npm run build",
|
|
13
13
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
14
14
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --autocorrect --format",
|
|
15
|
-
"eslint": "eslint .
|
|
15
|
+
"eslint": "eslint .",
|
|
16
16
|
"prettier": "prettier --config .prettierrc.js \"**/*.{css,html,ts,js,java}\"",
|
|
17
17
|
"swiftlint": "node-swiftlint",
|
|
18
18
|
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
|
|
@@ -24,28 +24,28 @@
|
|
|
24
24
|
"author": "Martin Donadieu <martindonadieu@gmail.com>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@capacitor/core": "^
|
|
27
|
+
"@capacitor/core": "^6.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@capacitor/android": "^
|
|
31
|
-
"@capacitor/cli": "^
|
|
32
|
-
"@capacitor/core": "^
|
|
33
|
-
"@capacitor/docgen": "^0.2.
|
|
34
|
-
"@capacitor/ios": "^
|
|
30
|
+
"@capacitor/android": "^6.0.0",
|
|
31
|
+
"@capacitor/cli": "^6.0.0",
|
|
32
|
+
"@capacitor/core": "^6.0.0",
|
|
33
|
+
"@capacitor/docgen": "^0.2.2",
|
|
34
|
+
"@capacitor/ios": "^6.0.0",
|
|
35
35
|
"@ionic/eslint-config": "^0.3.0",
|
|
36
|
-
"@ionic/prettier-config": "^
|
|
36
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
37
37
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
39
|
-
"@typescript-eslint/parser": "^
|
|
40
|
-
"eslint": "^
|
|
41
|
-
"eslint-plugin-import": "^2.
|
|
42
|
-
"husky": "^
|
|
43
|
-
"prettier": "^2.
|
|
44
|
-
"prettier-plugin-java": "^2.
|
|
45
|
-
"rimraf": "^5.0.
|
|
46
|
-
"rollup": "^
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
39
|
+
"@typescript-eslint/parser": "^7.8.0",
|
|
40
|
+
"eslint": "^9.1.1",
|
|
41
|
+
"eslint-plugin-import": "^2.29.1",
|
|
42
|
+
"husky": "^9.0.11",
|
|
43
|
+
"prettier": "^3.2.5",
|
|
44
|
+
"prettier-plugin-java": "^2.6.0",
|
|
45
|
+
"rimraf": "^5.0.5",
|
|
46
|
+
"rollup": "^4.17.1",
|
|
47
47
|
"swiftlint": "^1.0.2",
|
|
48
|
-
"typescript": "^5.
|
|
48
|
+
"typescript": "^5.4.5"
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
51
|
"dist/",
|
|
@@ -68,9 +68,6 @@
|
|
|
68
68
|
},
|
|
69
69
|
"prettier": "@ionic/prettier-config",
|
|
70
70
|
"swiftlint": "@ionic/swiftlint-config",
|
|
71
|
-
"eslintConfig": {
|
|
72
|
-
"extends": "@ionic/eslint-config/recommended"
|
|
73
|
-
},
|
|
74
71
|
"repository": {
|
|
75
72
|
"type": "git",
|
|
76
73
|
"url": "https://github.com/riderx/native-market"
|