@camera.ui/camera-ui-rust-motion 0.0.29 → 0.0.31
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/CHANGELOG.md +8 -0
- package/LICENSE.md +22 -0
- package/README.md +1 -0
- package/bundle.zip +0 -0
- package/package.json +11 -12
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
All notable changes to this project will be documented in this file.
|
|
2
|
+
|
|
3
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
## [X.X.X] - ???
|
|
7
|
+
|
|
8
|
+
- Initial Release
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-2024 seydx <dev@seydx.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @camera.ui/camera-ui-rust-motion
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "RUST Motion",
|
|
3
3
|
"name": "@camera.ui/camera-ui-rust-motion",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.31",
|
|
5
5
|
"description": "Lightning-fast motion detection written in Rust. Exceptional performance and reliability for continuous monitoring.",
|
|
6
6
|
"author": "seydx (https://github.com/seydx/camera.ui)",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"build:rust": "napi build --release",
|
|
12
12
|
"build:macos": "npm run build:macos-arm64 && npm run build:macos-x64 && npm run build:macos-universal",
|
|
13
13
|
"build:macos-arm64": "cross-env RUSTFLAGS='-C target-feature=+neon' npm run build:rust -- --target aarch64-apple-darwin && mv detector.node rust_detector_macos_arm64.node",
|
|
14
|
-
"build:macos-x64": "cross-env RUSTFLAGS='-C target-feature=+
|
|
14
|
+
"build:macos-x64": "cross-env RUSTFLAGS='-C target-feature=+sse4.1' npm run build:rust -- --target x86_64-apple-darwin && mv detector.node rust_detector_macos_x64.node",
|
|
15
15
|
"build:macos-universal": "lipo -create -output detector.node rust_detector_macos_arm64.node rust_detector_macos_x64.node",
|
|
16
|
-
"build:windows-x64": "cross-env RUSTFLAGS=\"-C target-feature=+
|
|
17
|
-
"build:linux-x64": "cross-env RUSTFLAGS='-C target-feature=+
|
|
18
|
-
"build:linux-arm64": "cross-env RUSTFLAGS='-C target-feature=+neon'
|
|
19
|
-
"build:freebsd-x64": "cross-env RUSTFLAGS='-C target-feature=+
|
|
16
|
+
"build:windows-x64": "cross-env RUSTFLAGS=\"-C target-feature=+sse4.1\" npm run build:rust -- --target x86_64-pc-windows-msvc",
|
|
17
|
+
"build:linux-x64": "cross-env RUSTFLAGS='-C target-feature=+sse4.1' npm run build:rust -- --target x86_64-unknown-linux-gnu",
|
|
18
|
+
"build:linux-arm64": "cross-env RUSTFLAGS='-C target-feature=+neon' npm run build:rust -- --target aarch64-unknown-linux-gnu",
|
|
19
|
+
"build:freebsd-x64": "cross-env RUSTFLAGS='-C target-feature=+sse4.1' npm run build:rust -- --target x86_64-unknown-freebsd",
|
|
20
20
|
"build:riscv-x64": "cross-env npm run build:rust -- --target riscv64gc-unknown-linux-gnu",
|
|
21
21
|
"bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
|
|
22
22
|
"bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"url": "https://github.com/seydx/camera.ui/issues"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"camera.ui": ">=0.0.
|
|
40
|
-
"node": ">=
|
|
39
|
+
"camera.ui": ">=0.0.50",
|
|
40
|
+
"node": ">=22.0.0"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/seydx/camera.ui#readme",
|
|
43
43
|
"keywords": [
|
|
@@ -67,11 +67,10 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"camera.ui": {
|
|
70
|
-
"
|
|
70
|
+
"extensions": [
|
|
71
|
+
"motionDetection"
|
|
72
|
+
],
|
|
71
73
|
"dependencies": [],
|
|
72
|
-
"options": {
|
|
73
|
-
"extendedMotionDetection": true
|
|
74
|
-
},
|
|
75
74
|
"bundled": true
|
|
76
75
|
}
|
|
77
76
|
}
|