@capgo/capacitor-ibeacon 8.0.1 → 8.0.3

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.
@@ -36,7 +36,7 @@ import org.altbeacon.beacon.Region;
36
36
  )
37
37
  public class CapacitorIbeaconPlugin extends Plugin implements BeaconConsumer {
38
38
 
39
- private final String pluginVersion = "8.0.1";
39
+ private final String pluginVersion = "8.0.3";
40
40
  private BeaconManager beaconManager;
41
41
  private Map<String, Region> monitoredRegions = new HashMap<>();
42
42
  private Map<String, Region> rangedRegions = new HashMap<>();
@@ -4,7 +4,7 @@ import CoreLocation
4
4
 
5
5
  @objc(CapacitorIbeaconPlugin)
6
6
  public class CapacitorIbeaconPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.1"
7
+ private let pluginVersion: String = "8.0.3"
8
8
  public let identifier = "CapacitorIbeaconPlugin"
9
9
  public let jsName = "CapacitorIbeacon"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-ibeacon",
3
- "version": "8.0.1",
3
+ "version": "8.0.3",
4
4
  "description": "iBeacon plugin for Capacitor - proximity detection and beacon region monitoring",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -24,6 +24,7 @@
24
24
  "bugs": {
25
25
  "url": "https://github.com/Cap-go/capacitor-ibeacon/issues"
26
26
  },
27
+ "homepage": "https://capgo.app/docs/plugins/ibeacon/",
27
28
  "keywords": [
28
29
  "capacitor",
29
30
  "ibeacon",
@@ -45,7 +46,7 @@
45
46
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
46
47
  "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
47
48
  "eslint": "eslint .",
48
- "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
49
+ "prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
49
50
  "swiftlint": "node-swiftlint",
50
51
  "docgen": "docgen --api CapacitorIbeaconPlugin --output-readme README.md --output-json dist/docs.json",
51
52
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
@@ -71,7 +72,8 @@
71
72
  "rimraf": "^6.1.0",
72
73
  "rollup": "^4.53.2",
73
74
  "swiftlint": "^2.0.0",
74
- "typescript": "^5.9.3"
75
+ "typescript": "^5.9.3",
76
+ "prettier-pretty-check": "^0.2.0"
75
77
  },
76
78
  "peerDependencies": {
77
79
  "@capacitor/core": ">=8.0.0"