@camera.ui/camera-ui-pamdiff 0.0.21 → 0.0.23
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 +8 -7
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Pam Diff",
|
|
3
3
|
"name": "@camera.ui/camera-ui-pamdiff",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "0.0.23",
|
|
5
|
+
"description": "Efficient pixel-based motion detection using PAM difference algorithm. Light on resources with quick response time.",
|
|
6
6
|
"author": "seydx (https://github.com/seydx/camera.ui)",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"type": "commonjs",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "rimraf dist && tsc",
|
|
11
|
-
"bundle": "npm run format && npm run lint && npm run build && cui bundle",
|
|
11
|
+
"bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
|
|
12
|
+
"bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
|
|
12
13
|
"format": "prettier --write \"src/\" --ignore-unknown --no-error-on-unmatched-pattern",
|
|
13
14
|
"install-updates": "npm i --save",
|
|
14
15
|
"lint": "eslint .",
|
|
15
16
|
"lint:fix": "eslint --fix .",
|
|
16
17
|
"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)}\"",
|
|
17
|
-
"publish:alpha": "cui publish --alpha",
|
|
18
|
-
"publish:beta": "cui publish --beta",
|
|
19
|
-
"publish:latest": "cui publish --latest",
|
|
18
|
+
"publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
|
|
19
|
+
"publish:beta": "npm i --save && npm run bundle && cui publish --beta",
|
|
20
|
+
"publish:latest": "npm i --save && npm run bundle && cui publish --latest",
|
|
20
21
|
"update": "updates --update ./"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"url": "https://github.com/seydx/camera.ui/issues"
|
|
27
28
|
},
|
|
28
29
|
"engines": {
|
|
29
|
-
"camera.ui": ">=0.0.
|
|
30
|
+
"camera.ui": ">=0.0.37",
|
|
30
31
|
"node": ">=20.18.0"
|
|
31
32
|
},
|
|
32
33
|
"homepage": "https://github.com/seydx/camera.ui#readme",
|