@camera.ui/camera-ui-opencl 0.0.6 → 0.0.8
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 +7 -6
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "OpenCL",
|
|
3
3
|
"name": "@camera.ui/camera-ui-opencl",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "0.0.8",
|
|
5
|
+
"description": "High-performance motion detection using OpenCL acceleration. Detect movement with precision and minimal CPU usage.",
|
|
6
6
|
"author": "seydx (https://github.com/seydx/camera.ui)",
|
|
7
7
|
"main": "./dist/main.py",
|
|
8
8
|
"type": "commonjs",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"bundle": "npm run format && npm run lint && cui bundle",
|
|
10
|
+
"bundle": "npm run format && npm run lint:fix && cui bundle",
|
|
11
|
+
"bundle:dev": "npm run format && npm run lint:fix && cross-env MODE=development cui bundle",
|
|
11
12
|
"format": "ruff format",
|
|
12
13
|
"install-updates": "npm i --save",
|
|
13
14
|
"lint": "ruff check",
|
|
14
15
|
"lint:fix": "ruff check --fix",
|
|
15
16
|
"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)}\"",
|
|
16
|
-
"publish:alpha": "cui publish --alpha",
|
|
17
|
-
"publish:beta": "cui publish --beta",
|
|
18
|
-
"publish:latest": "cui publish --latest",
|
|
17
|
+
"publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
|
|
18
|
+
"publish:beta": "npm i --save && npm run bundle && cui publish --beta",
|
|
19
|
+
"publish:latest": "npm i --save && npm run bundle && cui publish --latest",
|
|
19
20
|
"update": "updates --update ./"
|
|
20
21
|
},
|
|
21
22
|
"bugs": {
|