@capacitor/screen-reader 8.0.0-dev-2434-20251110T164658.0 → 8.0.0-dev-2444-20251112T191753.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/Package.swift +1 -1
- package/android/src/main/java/com/capacitorjs/plugins/screenreader/ScreenReader.java +6 -12
- package/android/src/main/java/com/capacitorjs/plugins/screenreader/ScreenReaderPlugin.java +5 -7
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +1 -1
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +1 -1
- package/dist/plugin.js.map +1 -1
- package/package.json +5 -5
package/Package.swift
CHANGED
|
@@ -10,7 +10,7 @@ let package = Package(
|
|
|
10
10
|
targets: ["ScreenReaderPlugin"])
|
|
11
11
|
],
|
|
12
12
|
dependencies: [
|
|
13
|
-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "
|
|
13
|
+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
|
|
14
14
|
],
|
|
15
15
|
targets: [
|
|
16
16
|
.target(
|
|
@@ -47,18 +47,12 @@ public class ScreenReader {
|
|
|
47
47
|
if (isEnabled()) {
|
|
48
48
|
final Locale locale = Locale.forLanguageTag(languageTag);
|
|
49
49
|
|
|
50
|
-
textToSpeech =
|
|
51
|
-
new
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
.build();
|
|
57
|
-
textToSpeech.setAudioAttributes(attributes);
|
|
58
|
-
textToSpeech.setLanguage(locale);
|
|
59
|
-
textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, "capacitor-screen-reader" + System.currentTimeMillis());
|
|
60
|
-
}
|
|
61
|
-
);
|
|
50
|
+
textToSpeech = new TextToSpeech(context, (status) -> {
|
|
51
|
+
AudioAttributes attributes = new AudioAttributes.Builder().setUsage(AudioAttributes.USAGE_ASSISTANCE_ACCESSIBILITY).build();
|
|
52
|
+
textToSpeech.setAudioAttributes(attributes);
|
|
53
|
+
textToSpeech.setLanguage(locale);
|
|
54
|
+
textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, "capacitor-screen-reader" + System.currentTimeMillis());
|
|
55
|
+
});
|
|
62
56
|
}
|
|
63
57
|
}
|
|
64
58
|
}
|
|
@@ -15,13 +15,11 @@ public class ScreenReaderPlugin extends Plugin {
|
|
|
15
15
|
@Override
|
|
16
16
|
public void load() {
|
|
17
17
|
screenReader = new ScreenReader(getContext());
|
|
18
|
-
screenReader.addStateChangeListener(
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
);
|
|
18
|
+
screenReader.addStateChangeListener((enabled) -> {
|
|
19
|
+
JSObject ret = new JSObject();
|
|
20
|
+
ret.put("value", enabled);
|
|
21
|
+
notifyListeners(EVENT_STATE_CHANGE, ret);
|
|
22
|
+
});
|
|
25
23
|
}
|
|
26
24
|
|
|
27
25
|
@Override
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["import type { PluginListenerHandle } from '@capacitor/core';\n\nexport interface SpeakOptions {\n /**\n * The text to speak.\n *\n * @since 1.0.0\n */\n value: string;\n\n /**\n * The language to speak the text in, as its [ISO 639-1\n * Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g.: \"en\").\n *\n * This option is only supported on Android.\n *\n * @since 1.0.0\n */\n language?: string;\n}\n\nexport interface ScreenReaderState {\n /**\n * Whether a Screen Reader is currently active.\n *\n * @since 1.0.0\n */\n value: boolean;\n}\n\nexport type StateChangeListener = (state: ScreenReaderState) => void;\n\nexport interface ScreenReaderPlugin {\n /**\n * Whether a Screen Reader is currently active.\n *\n * This method is not supported on web (it is not possible to detect Screen\n * Readers).\n *\n * @since 1.0.0\n */\n isEnabled(): Promise<{ value: boolean }>;\n\n /**\n * Text-to-Speech functionality.\n *\n * This function will only work if a Screen Reader is currently active.\n *\n * On web, browsers must support the [SpeechSynthesis\n * API](https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis), or\n * this method will throw an error.\n *\n * For more text-to-speech capabilities, please see the [Capacitor Community\n * Text-to-Speech\n * plugin](https://github.com/capacitor-community/text-to-speech).\n *\n * @since 1.0.0\n */\n speak(options: SpeakOptions): Promise<void>;\n\n /**\n * Add a listener for when the screen reader is turned on or off.\n *\n * This event used to be named `'accessibilityScreenReaderStateChange'`.\n *\n * This method is not supported on web (it is not possible to detect Screen\n * Readers).\n *\n * @since 1.0.0\n */\n addListener(
|
|
1
|
+
{"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["import type { PluginListenerHandle } from '@capacitor/core';\n\nexport interface SpeakOptions {\n /**\n * The text to speak.\n *\n * @since 1.0.0\n */\n value: string;\n\n /**\n * The language to speak the text in, as its [ISO 639-1\n * Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g.: \"en\").\n *\n * This option is only supported on Android.\n *\n * @since 1.0.0\n */\n language?: string;\n}\n\nexport interface ScreenReaderState {\n /**\n * Whether a Screen Reader is currently active.\n *\n * @since 1.0.0\n */\n value: boolean;\n}\n\nexport type StateChangeListener = (state: ScreenReaderState) => void;\n\nexport interface ScreenReaderPlugin {\n /**\n * Whether a Screen Reader is currently active.\n *\n * This method is not supported on web (it is not possible to detect Screen\n * Readers).\n *\n * @since 1.0.0\n */\n isEnabled(): Promise<{ value: boolean }>;\n\n /**\n * Text-to-Speech functionality.\n *\n * This function will only work if a Screen Reader is currently active.\n *\n * On web, browsers must support the [SpeechSynthesis\n * API](https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis), or\n * this method will throw an error.\n *\n * For more text-to-speech capabilities, please see the [Capacitor Community\n * Text-to-Speech\n * plugin](https://github.com/capacitor-community/text-to-speech).\n *\n * @since 1.0.0\n */\n speak(options: SpeakOptions): Promise<void>;\n\n /**\n * Add a listener for when the screen reader is turned on or off.\n *\n * This event used to be named `'accessibilityScreenReaderStateChange'`.\n *\n * This method is not supported on web (it is not possible to detect Screen\n * Readers).\n *\n * @since 1.0.0\n */\n addListener(eventName: 'stateChange', listener: StateChangeListener): Promise<PluginListenerHandle>;\n\n /**\n * Remove all the listeners that are attached to this plugin.\n *\n * @since 1.0.0\n */\n removeAllListeners(): Promise<void>;\n}\n\n/**\n * @deprecated Use `SpeakOptions`.\n * @since 1.0.0\n */\nexport type AccessibilitySpeakOptions = SpeakOptions;\n\n/**\n * @deprecated Use `StateChangeListener`.\n * @since 1.0.0\n */\nexport type ScreenReaderStateChangeCallback = StateChangeListener;\n"]}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { registerPlugin } from '@capacitor/core';
|
|
2
2
|
const ScreenReader = registerPlugin('ScreenReader', {
|
|
3
|
-
web: () => import('./web').then(m => new m.ScreenReaderWeb()),
|
|
3
|
+
web: () => import('./web').then((m) => new m.ScreenReaderWeb()),
|
|
4
4
|
});
|
|
5
5
|
export * from './definitions';
|
|
6
6
|
export { ScreenReader };
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,YAAY,GAAG,cAAc,CAAqB,cAAc,EAAE;IACtE,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,YAAY,GAAG,cAAc,CAAqB,cAAc,EAAE;IACtE,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;CAChE,CAAC,CAAC;AAEH,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,YAAY,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\n\nimport type { ScreenReaderPlugin } from './definitions';\n\nconst ScreenReader = registerPlugin<ScreenReaderPlugin>('ScreenReader', {\n web: () => import('./web').then((m) => new m.ScreenReaderWeb()),\n});\n\nexport * from './definitions';\nexport { ScreenReader };\n"]}
|
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,KAAK,CAAC,SAAS;QACb,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC,CAAC;IAC1E,CAAC;IAED,KAAK,CAAC,KAAK,CAAC,OAAqB;QAC/B,IAAI,CAAC,CAAC,iBAAiB,IAAI,MAAM,CAAC,EAAE;YAClC,MAAM,IAAI,CAAC,WAAW,
|
|
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,KAAK,CAAC,SAAS;QACb,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC,CAAC;IAC1E,CAAC;IAED,KAAK,CAAC,KAAK,CAAC,OAAqB;QAC/B,IAAI,CAAC,CAAC,iBAAiB,IAAI,MAAM,CAAC,EAAE;YAClC,MAAM,IAAI,CAAC,WAAW,CAAC,kDAAkD,CAAC,CAAC;SAC5E;QAED,MAAM,SAAS,GAAG,IAAI,wBAAwB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAE9D,IAAI,OAAO,CAAC,QAAQ,EAAE;YACpB,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC;SACnC;QAED,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;CACF","sourcesContent":["import { WebPlugin } from '@capacitor/core';\n\nimport type { ScreenReaderPlugin, SpeakOptions } from './definitions';\n\nexport class ScreenReaderWeb extends WebPlugin implements ScreenReaderPlugin {\n async isEnabled(): Promise<never> {\n throw this.unavailable('This feature is not available in the browser.');\n }\n\n async speak(options: SpeakOptions): Promise<void> {\n if (!('speechSynthesis' in window)) {\n throw this.unavailable('Browser does not support the SpeechSynthesis API');\n }\n\n const utterance = new SpeechSynthesisUtterance(options.value);\n\n if (options.language) {\n utterance.lang = options.language;\n }\n\n speechSynthesis.speak(utterance);\n }\n}\n"]}
|
package/dist/plugin.cjs.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var core = require('@capacitor/core');
|
|
4
4
|
|
|
5
5
|
const ScreenReader = core.registerPlugin('ScreenReader', {
|
|
6
|
-
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.ScreenReaderWeb()),
|
|
6
|
+
web: () => Promise.resolve().then(function () { return web; }).then((m) => new m.ScreenReaderWeb()),
|
|
7
7
|
});
|
|
8
8
|
|
|
9
9
|
class ScreenReaderWeb extends core.WebPlugin {
|
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 ScreenReader = registerPlugin('ScreenReader', {\n web: () => import('./web').then(m => new m.ScreenReaderWeb()),\n});\nexport * from './definitions';\nexport { ScreenReader };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class ScreenReaderWeb extends WebPlugin {\n async isEnabled() {\n throw this.unavailable('This feature is not available in the browser.');\n }\n async speak(options) {\n if (!('speechSynthesis' in window)) {\n throw this.unavailable('Browser does not support the SpeechSynthesis API');\n }\n const utterance = new SpeechSynthesisUtterance(options.value);\n if (options.language) {\n utterance.lang = options.language;\n }\n speechSynthesis.speak(utterance);\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,
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst ScreenReader = registerPlugin('ScreenReader', {\n web: () => import('./web').then((m) => new m.ScreenReaderWeb()),\n});\nexport * from './definitions';\nexport { ScreenReader };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class ScreenReaderWeb extends WebPlugin {\n async isEnabled() {\n throw this.unavailable('This feature is not available in the browser.');\n }\n async speak(options) {\n if (!('speechSynthesis' in window)) {\n throw this.unavailable('Browser does not support the SpeechSynthesis API');\n }\n const utterance = new SpeechSynthesisUtterance(options.value);\n if (options.language) {\n utterance.lang = options.language;\n }\n speechSynthesis.speak(utterance);\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,MAAM,SAAS,GAAG;AACtB,QAAQ,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC;AAC/E,IAAI;AACJ,IAAI,MAAM,KAAK,CAAC,OAAO,EAAE;AACzB,QAAQ,IAAI,EAAE,iBAAiB,IAAI,MAAM,CAAC,EAAE;AAC5C,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,kDAAkD,CAAC;AACtF,QAAQ;AACR,QAAQ,MAAM,SAAS,GAAG,IAAI,wBAAwB,CAAC,OAAO,CAAC,KAAK,CAAC;AACrE,QAAQ,IAAI,OAAO,CAAC,QAAQ,EAAE;AAC9B,YAAY,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,QAAQ;AAC7C,QAAQ;AACR,QAAQ,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC;AACxC,IAAI;AACJ;;;;;;;;;"}
|
package/dist/plugin.js
CHANGED
|
@@ -2,7 +2,7 @@ var capacitorScreenReader = (function (exports, core) {
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
const ScreenReader = core.registerPlugin('ScreenReader', {
|
|
5
|
-
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.ScreenReaderWeb()),
|
|
5
|
+
web: () => Promise.resolve().then(function () { return web; }).then((m) => new m.ScreenReaderWeb()),
|
|
6
6
|
});
|
|
7
7
|
|
|
8
8
|
class ScreenReaderWeb extends core.WebPlugin {
|
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 ScreenReader = registerPlugin('ScreenReader', {\n web: () => import('./web').then(m => new m.ScreenReaderWeb()),\n});\nexport * from './definitions';\nexport { ScreenReader };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class ScreenReaderWeb extends WebPlugin {\n async isEnabled() {\n throw this.unavailable('This feature is not available in the browser.');\n }\n async speak(options) {\n if (!('speechSynthesis' in window)) {\n throw this.unavailable('Browser does not support the SpeechSynthesis API');\n }\n const utterance = new SpeechSynthesisUtterance(options.value);\n if (options.language) {\n utterance.lang = options.language;\n }\n speechSynthesis.speak(utterance);\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,
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst ScreenReader = registerPlugin('ScreenReader', {\n web: () => import('./web').then((m) => new m.ScreenReaderWeb()),\n});\nexport * from './definitions';\nexport { ScreenReader };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class ScreenReaderWeb extends WebPlugin {\n async isEnabled() {\n throw this.unavailable('This feature is not available in the browser.');\n }\n async speak(options) {\n if (!('speechSynthesis' in window)) {\n throw this.unavailable('Browser does not support the SpeechSynthesis API');\n }\n const utterance = new SpeechSynthesisUtterance(options.value);\n if (options.language) {\n utterance.lang = options.language;\n }\n speechSynthesis.speak(utterance);\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,MAAM,SAAS,GAAG;IACtB,QAAQ,MAAM,IAAI,CAAC,WAAW,CAAC,+CAA+C,CAAC;IAC/E,IAAI;IACJ,IAAI,MAAM,KAAK,CAAC,OAAO,EAAE;IACzB,QAAQ,IAAI,EAAE,iBAAiB,IAAI,MAAM,CAAC,EAAE;IAC5C,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,kDAAkD,CAAC;IACtF,QAAQ;IACR,QAAQ,MAAM,SAAS,GAAG,IAAI,wBAAwB,CAAC,OAAO,CAAC,KAAK,CAAC;IACrE,QAAQ,IAAI,OAAO,CAAC,QAAQ,EAAE;IAC9B,YAAY,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,QAAQ;IAC7C,QAAQ;IACR,QAAQ,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC;IACxC,IAAI;IACJ;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/screen-reader",
|
|
3
|
-
"version": "8.0.0-dev-
|
|
3
|
+
"version": "8.0.0-dev-2444-20251112T191753.0",
|
|
4
4
|
"description": "The Screen Reader API provides access to TalkBack/VoiceOver/etc. and provides simple text-to-speech capabilities for visual accessibility.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
38
38
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
|
|
39
39
|
"eslint": "eslint . --ext ts",
|
|
40
|
-
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
|
|
40
|
+
"prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
41
41
|
"swiftlint": "node-swiftlint",
|
|
42
42
|
"docgen": "docgen --api ScreenReaderPlugin --output-readme README.md --output-json dist/docs.json",
|
|
43
43
|
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"@capacitor/docgen": "0.2.2",
|
|
53
53
|
"@capacitor/ios": "next",
|
|
54
54
|
"@ionic/eslint-config": "^0.4.0",
|
|
55
|
-
"@ionic/prettier-config": "
|
|
55
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
56
56
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
57
57
|
"eslint": "^8.57.0",
|
|
58
|
-
"prettier": "
|
|
59
|
-
"prettier-plugin-java": "
|
|
58
|
+
"prettier": "^3.6.2",
|
|
59
|
+
"prettier-plugin-java": "^2.7.7",
|
|
60
60
|
"rimraf": "^6.0.1",
|
|
61
61
|
"rollup": "^4.26.0",
|
|
62
62
|
"swiftlint": "^1.0.1",
|