@tempivo/sensor-beacon 0.1.0 → 0.1.1

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.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tempivo/sensor-beacon",
3
- "version": "0.1.0",
4
- "description": "Decode Tempivo sensor BLE manufacturer advertisements (0x026C). Advertising only, no GATT connect. For integrators and custom apps.",
3
+ "version": "0.1.1",
4
+ "description": "Tempivo sensor BLE beacon SDK: TypeScript decoder plus iOS and Android scan libraries. Advertising only, no GATT.",
5
5
  "homepage": "https://app.tempivo.com/integrations",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
@@ -14,6 +14,8 @@
14
14
  },
15
15
  "files": [
16
16
  "dist",
17
+ "android",
18
+ "ios",
17
19
  "LICENSE",
18
20
  "README.md"
19
21
  ],
@@ -24,9 +26,12 @@
24
26
  "node": ">=18"
25
27
  },
26
28
  "scripts": {
27
- "build": "tsc",
29
+ "build": "npm run build:ts",
30
+ "build:ts": "tsc",
31
+ "build:android": "node scripts/build-aar.mjs",
32
+ "build:all": "npm run build:ts && npm run build:android",
28
33
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.mjs",
29
- "prepublishOnly": "npm run build"
34
+ "prepublishOnly": "npm run build:all"
30
35
  },
31
36
  "keywords": [
32
37
  "tempivo",
@@ -34,7 +39,9 @@
34
39
  "bluetooth",
35
40
  "beacon",
36
41
  "sensor",
37
- "manufacturer-data"
42
+ "manufacturer-data",
43
+ "android",
44
+ "ios"
38
45
  ],
39
46
  "license": "MIT",
40
47
  "devDependencies": {