@camera.ui/common 0.0.46 → 0.0.49

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.
@@ -2,5 +2,5 @@ export declare const IS_DEV: boolean;
2
2
  export declare const IS_DOCKER: boolean;
3
3
  export declare const IS_ELECTRON: boolean;
4
4
  export declare const IS_HA: boolean;
5
- export declare const APP_CLI_NAME = "camera.ui3";
5
+ export declare const APP_CLI_NAME = "camera.ui";
6
6
  export declare const APP_SERVER_NAME = "@camera.ui/server";
package/dist/utils/env.js CHANGED
@@ -3,7 +3,6 @@ export const IS_DEV = env.NODE_ENV === 'development';
3
3
  export const IS_DOCKER = env.CAMERA_UI_RUNMODE === 'docker';
4
4
  export const IS_ELECTRON = env.CAMERA_UI_RUNMODE === 'electron';
5
5
  export const IS_HA = env.CAMERA_UI_RUNMODE === 'homeassistant';
6
- // Todo: change after release
7
- export const APP_CLI_NAME = 'camera.ui3';
6
+ export const APP_CLI_NAME = 'camera.ui';
8
7
  export const APP_SERVER_NAME = '@camera.ui/server';
9
8
  //# sourceMappingURL=env.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"env.js","sourceRoot":"","sources":["../../src/utils/env.ts"],"names":[],"mappings":"AAAA,MAAM,GAAG,GAAuC,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;AAEjH,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAC,QAAQ,KAAK,aAAa,CAAC;AACrD,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC,iBAAiB,KAAK,QAAQ,CAAC;AAC5D,MAAM,CAAC,MAAM,WAAW,GAAG,GAAG,CAAC,iBAAiB,KAAK,UAAU,CAAC;AAChE,MAAM,CAAC,MAAM,KAAK,GAAG,GAAG,CAAC,iBAAiB,KAAK,eAAe,CAAC;AAE/D,6BAA6B;AAC7B,MAAM,CAAC,MAAM,YAAY,GAAG,YAAY,CAAC;AACzC,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB,CAAC"}
1
+ {"version":3,"file":"env.js","sourceRoot":"","sources":["../../src/utils/env.ts"],"names":[],"mappings":"AAAA,MAAM,GAAG,GAAuC,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;AAEjH,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAC,QAAQ,KAAK,aAAa,CAAC;AACrD,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC,iBAAiB,KAAK,QAAQ,CAAC;AAC5D,MAAM,CAAC,MAAM,WAAW,GAAG,GAAG,CAAC,iBAAiB,KAAK,UAAU,CAAC;AAChE,MAAM,CAAC,MAAM,KAAK,GAAG,GAAG,CAAC,iBAAiB,KAAK,eAAe,CAAC;AAE/D,MAAM,CAAC,MAAM,YAAY,GAAG,WAAW,CAAC;AACxC,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camera.ui/common",
3
- "version": "0.0.46",
3
+ "version": "0.0.49",
4
4
  "description": "camera.ui utilities",
5
5
  "type": "module",
6
6
  "exports": {
@@ -44,35 +44,34 @@
44
44
  "scripts": {
45
45
  "build": "rimraf dist && tsc",
46
46
  "format": "prettier --write 'src/' --ignore-unknown --no-error-on-unmatched-pattern",
47
- "lint": "eslint .",
48
- "lint:fix": "eslint --fix .",
47
+ "lint": "eslint --fix .",
49
48
  "test": "vitest run --passWithNoTests",
50
49
  "update": "updates --update ./",
51
50
  "install-updates": "npm i --save",
52
- "prepublishOnly": "npm i --package-lock-only && npm run lint:fix && npm run format && npm run build"
51
+ "prepublishOnly": "npm i --package-lock-only && npm run lint && npm run format && npm run build"
53
52
  },
54
53
  "dependencies": {
55
- "@camera.ui/sdk": "^0.0.7",
54
+ "@camera.ui/sdk": "~0.0.12",
56
55
  "@seydx/fix-path": "^5.0.0",
57
56
  "ansicolor": "^2.0.3",
58
57
  "pick-port": "^2.2.1",
59
58
  "rxjs": "^7.8.2",
60
59
  "sdp-transform": "^3.0.0",
61
- "systeminformation": "^5.31.7"
60
+ "systeminformation": "^5.31.13"
62
61
  },
63
62
  "devDependencies": {
64
63
  "@stylistic/eslint-plugin": "^5.10.0",
65
- "@types/node": "25.9.3",
64
+ "@types/node": "26.1.0",
66
65
  "@types/sdp-transform": "^3.0.0",
67
- "@typescript-eslint/parser": "^8.61.1",
66
+ "@typescript-eslint/parser": "^8.62.1",
68
67
  "eslint": "9.39.2",
69
- "globals": "^17.6.0",
70
- "prettier": "^3.8.4",
68
+ "globals": "^17.7.0",
69
+ "prettier": "^3.9.4",
71
70
  "rimraf": "^6.1.3",
72
71
  "tsyringe": "^4.10.0",
73
72
  "typescript": "5.9.3",
74
- "typescript-eslint": "^8.61.1",
75
- "updates": "^17.18.0",
73
+ "typescript-eslint": "^8.62.1",
74
+ "updates": "^17.18.2",
76
75
  "vitest": "^4.1.9"
77
76
  },
78
77
  "author": "seydx (https://github.com/cameraui/common)",