@camera.ui/camera-ui-coreml 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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/bundle.zip +0 -0
- package/package.json +20 -16
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# @camera.ui/camera-ui-coreml
|
|
1
|
+
# @camera.ui/camera-ui-coreml
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "CoreML",
|
|
3
3
|
"name": "@camera.ui/camera-ui-coreml",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "
|
|
6
|
-
"author": "seydx (https://github.com/
|
|
4
|
+
"version": "0.0.31",
|
|
5
|
+
"description": "Consolidated Apple CoreML plugin providing object detection, face detection and recognition, license plate detection with OCR, and CLIP semantic embeddings.",
|
|
6
|
+
"author": "seydx (https://github.com/cameraui/plugins)",
|
|
7
7
|
"main": "./dist/main.py",
|
|
8
8
|
"type": "commonjs",
|
|
9
9
|
"scripts": {
|
|
@@ -18,34 +18,38 @@
|
|
|
18
18
|
"publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
|
|
19
19
|
"publish:beta": "npm i --save && npm run bundle && cui publish --beta",
|
|
20
20
|
"publish:latest": "npm i --save && npm run bundle && cui publish --latest",
|
|
21
|
-
"update": "updates --update ./"
|
|
21
|
+
"update": "updates --update ./ && cupdate"
|
|
22
22
|
},
|
|
23
23
|
"bugs": {
|
|
24
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/cameraui/plugins/issues"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"camera.ui": ">=0.0.50",
|
|
28
28
|
"node": ">=22.0.0"
|
|
29
29
|
},
|
|
30
|
-
"homepage": "https://github.com/
|
|
30
|
+
"homepage": "https://github.com/cameraui/plugins/tree/main/camera-ui-coreml#readme",
|
|
31
31
|
"keywords": [
|
|
32
32
|
"camera-ui-plugin",
|
|
33
|
-
"motion",
|
|
34
33
|
"object",
|
|
34
|
+
"clip-detection",
|
|
35
|
+
"clip",
|
|
36
|
+
"face-detection",
|
|
37
|
+
"face",
|
|
38
|
+
"license-plate",
|
|
39
|
+
"lpd",
|
|
40
|
+
"ocr",
|
|
41
|
+
"alpr",
|
|
35
42
|
"coreml",
|
|
36
43
|
"detection"
|
|
37
44
|
],
|
|
38
45
|
"license": "MIT",
|
|
39
46
|
"repository": {
|
|
40
47
|
"type": "git",
|
|
41
|
-
"url": "git+https://github.com/
|
|
48
|
+
"url": "git+https://github.com/cameraui/plugins.git",
|
|
49
|
+
"directory": "camera-ui-coreml"
|
|
42
50
|
},
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"dependencies": [],
|
|
48
|
-
"pythonVersion": "3.11",
|
|
49
|
-
"bundled": true
|
|
50
|
-
}
|
|
51
|
+
"files": [
|
|
52
|
+
"bundle.zip",
|
|
53
|
+
"CHANGELOG.md"
|
|
54
|
+
]
|
|
51
55
|
}
|