iobroker.motioneye 0.0.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 ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "iobroker.motioneye",
3
+ "version": "0.0.1",
4
+ "description": "Connect MotionEye cameras to ioBroker for motion detection, snapshots, and live streams",
5
+ "author": {
6
+ "name": "skvarel",
7
+ "email": "skvarel@inventwo.com"
8
+ },
9
+ "contributors": [
10
+ {
11
+ "name": "skvarel"
12
+ }
13
+ ],
14
+ "homepage": "https://github.com/inventwo/ioBroker.motioneye",
15
+ "license": "MIT",
16
+ "keywords": [
17
+ "motioneye",
18
+ "motion",
19
+ "camera",
20
+ "surveillance",
21
+ "ioBroker",
22
+ "adapter"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/inventwo/ioBroker.motioneye.git"
27
+ },
28
+ "engines": {
29
+ "node": ">= 22"
30
+ },
31
+ "dependencies": {
32
+ "@iobroker/adapter-core": "^3.3.2"
33
+ },
34
+ "devDependencies": {
35
+ "@alcalzone/release-script": "^5.2.1",
36
+ "@alcalzone/release-script-plugin-iobroker": "^5.2.0",
37
+ "@alcalzone/release-script-plugin-license": "^5.2.0",
38
+ "@alcalzone/release-script-plugin-manual-review": "^5.2.0",
39
+ "@iobroker/adapter-dev": "^1.5.0",
40
+ "@iobroker/dev-server": "^0.8.0",
41
+ "@iobroker/eslint-config": "^2.3.4",
42
+ "@iobroker/testing": "^5.2.2",
43
+ "@tsconfig/node22": "^22.0.5",
44
+ "@types/iobroker": "npm:@iobroker/types@^7.1.2",
45
+ "@types/node": "^22.19.19",
46
+ "typescript": "~6.0.3"
47
+ },
48
+ "main": "main.js",
49
+ "files": [
50
+ "admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
51
+ "admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
52
+ "lib/",
53
+ "io-package.json",
54
+ "LICENSE",
55
+ "main.js"
56
+ ],
57
+ "scripts": {
58
+ "release-patch": "release-script patch --yes",
59
+ "release-minor": "release-script minor --yes",
60
+ "release-major": "release-script major --yes",
61
+ "test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup).js}\"",
62
+ "test:package": "mocha test/package --exit",
63
+ "test:integration": "mocha test/integration --exit",
64
+ "test": "npm run test:js && npm run test:package",
65
+ "check": "tsc --noEmit -p tsconfig.check.json",
66
+ "lint": "eslint -c eslint.config.mjs .",
67
+ "lint-fix": "eslint -c eslint.config.mjs . --fix",
68
+ "translate": "translate-adapter",
69
+ "dev-server:start": "dev-server watch",
70
+ "dev-server:stop": "powershell -NonInteractive -Command \"Get-NetTCPConnection -LocalPort 8091,26436,24436,20436 -EA SilentlyContinue | Select-Object -ExpandProperty OwningProcess -Unique | ForEach-Object { Stop-Process -Id $_ -Force -EA SilentlyContinue }; Write-Host 'dev-server stopped'\""
71
+ },
72
+ "bugs": {
73
+ "url": "https://github.com/inventwo/ioBroker.motioneye/issues"
74
+ },
75
+ "readmeFilename": "README.md",
76
+ "overrides": {
77
+ "@iobroker/adapter-core": "^3.3.2"
78
+ }
79
+ }