@camera.ui/camera-ui-homekit 0.0.49 → 0.0.50

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.
Files changed (3) hide show
  1. package/LICENSE.md +1 -1
  2. package/bundle.zip +0 -0
  3. package/package.json +12 -13
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2024 seydx <dev@seydx.com>
3
+ Copyright (c) 2023-2026 seydx <hi@seydx.dev>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "displayName": "HomeKit",
3
3
  "name": "@camera.ui/camera-ui-homekit",
4
- "version": "0.0.49",
4
+ "version": "0.0.50",
5
5
  "description": "Connect your Apple HomeKit devices for seamless smart home control. Automate and manage your HomeKit ecosystem.",
6
- "author": "seydx (https://github.com/seydx/camera.ui)",
6
+ "author": "seydx (https://github.com/cameraui/plugins)",
7
7
  "main": "./dist/index.js",
8
8
  "type": "commonjs",
9
9
  "scripts": {
10
- "build": "rimraf dist && tsc",
10
+ "build": "rimraf dist && npm run build:hap && tsc",
11
+ "build:hap": "npm --prefix ../externals/hap ci --ignore-scripts && npm --prefix ../externals/hap run build",
11
12
  "bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
12
13
  "bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
13
14
  "format": "prettier --write \"src/\" --ignore-unknown --no-error-on-unmatched-pattern",
@@ -21,13 +22,13 @@
21
22
  "update": "updates --update ./"
22
23
  },
23
24
  "bugs": {
24
- "url": "https://github.com/seydx/camera.ui/issues"
25
+ "url": "https://github.com/cameraui/plugins/issues"
25
26
  },
26
27
  "engines": {
27
28
  "camera.ui": ">=0.0.66",
28
29
  "node": ">=22.0.0"
29
30
  },
30
- "homepage": "https://github.com/seydx/camera.ui#readme",
31
+ "homepage": "https://github.com/cameraui/plugins/tree/main/camera-ui-homekit#readme",
31
32
  "keywords": [
32
33
  "camera-ui-plugin",
33
34
  "ring",
@@ -36,13 +37,11 @@
36
37
  "license": "MIT",
37
38
  "repository": {
38
39
  "type": "git",
39
- "url": "git+https://github.com/seydx/camera.ui.git"
40
+ "url": "git+https://github.com/cameraui/plugins.git",
41
+ "directory": "camera-ui-homekit"
40
42
  },
41
- "camera.ui": {
42
- "extensions": [
43
- "hub"
44
- ],
45
- "dependencies": [],
46
- "bundled": true
47
- }
43
+ "files": [
44
+ "bundle.zip",
45
+ "CHANGELOG.md"
46
+ ]
48
47
  }