@camera.ui/camera-ui-rust-motion 0.0.19 → 0.0.21
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/bundle.zip +0 -0
- package/package.json +9 -8
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "RUST Motion",
|
|
3
3
|
"name": "@camera.ui/camera-ui-rust-motion",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "0.0.21",
|
|
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",
|
|
8
8
|
"type": "commonjs",
|
|
@@ -18,24 +18,25 @@
|
|
|
18
18
|
"build:riscv64": "CROSS_CONTAINER_OPTS=--platform=linux/amd64 cross +nightly build --message-format=json-render-diagnostics > cross.log --target riscv64gc-unknown-linux-gnu --release && npm run build:rust",
|
|
19
19
|
"build:freebsd": "cross-env RUSTFLAGS='-C target-feature=+avx2,+sse4.1' CROSS_CONTAINER_OPTS=--platform=linux/amd64 cross +nightly build --message-format=json-render-diagnostics > cross.log --target x86_64-unknown-freebsd --release && npm run build:rust",
|
|
20
20
|
"build:linux-arm64": "cross-env RUSTFLAGS='-C target-feature=+neon' CROSS_CONTAINER_OPTS=--platform=linux/amd64 cross +nightly build --message-format=json-render-diagnostics > cross.log --target aarch64-unknown-linux-gnu --release && npm run build:rust",
|
|
21
|
-
"bundle": "npm run format && npm run lint && npm run build && cui bundle",
|
|
21
|
+
"bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
|
|
22
|
+
"bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
|
|
22
23
|
"clean": "cargo clean && rimraf --glob *.node",
|
|
23
24
|
"clean:cargo": "cargo clean",
|
|
24
25
|
"format": "prettier --write 'src/' --ignore-unknown --no-error-on-unmatched-pattern && cargo fmt",
|
|
25
26
|
"install-updates": "npm i --save",
|
|
26
27
|
"lint": "cargo clippy && eslint .",
|
|
27
|
-
"lint:fix": "cargo clippy --fix && eslint --fix .",
|
|
28
|
+
"lint:fix": "cargo clippy --fix --allow-dirty && eslint --fix .",
|
|
28
29
|
"prepublishOnly": "node -e \"if(!process.env.SAFE_PUBLISH){console.error('Error: Please use @camera.ui/cli to publish the plugin:\\n npm run publish:alpha\\n npm run publish:beta\\n npm run publish:latest\\n');process.exit(1)}\"",
|
|
29
|
-
"publish:alpha": "cui publish --alpha",
|
|
30
|
-
"publish:beta": "cui publish --beta",
|
|
31
|
-
"publish:latest": "cui publish --latest",
|
|
30
|
+
"publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
|
|
31
|
+
"publish:beta": "npm i --save && npm run bundle && cui publish --beta",
|
|
32
|
+
"publish:latest": "npm i --save && npm run bundle && cui publish --latest",
|
|
32
33
|
"update": "updates --update ./"
|
|
33
34
|
},
|
|
34
35
|
"bugs": {
|
|
35
36
|
"url": "https://github.com/seydx/camera.ui/issues"
|
|
36
37
|
},
|
|
37
38
|
"engines": {
|
|
38
|
-
"camera.ui": ">=0.0.
|
|
39
|
+
"camera.ui": ">=0.0.37",
|
|
39
40
|
"node": ">=20.18.0"
|
|
40
41
|
},
|
|
41
42
|
"homepage": "https://github.com/seydx/camera.ui#readme",
|