@camera.ui/camera-ui-ncnn 0.0.1

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 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-2026 seydx <hi@seydx.dev>
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-ncnn
package/bundle.zip ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "displayName": "NCNN",
3
+ "name": "@camera.ui/camera-ui-ncnn",
4
+ "version": "0.0.1",
5
+ "description": "Consolidated NCNN 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
+ "main": "./dist/main.py",
8
+ "type": "commonjs",
9
+ "scripts": {
10
+ "build": "mypy src",
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",
13
+ "format": "ruff format",
14
+ "install-updates": "npm i --save",
15
+ "lint": "ruff check",
16
+ "lint:fix": "ruff check --fix",
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)}\"",
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",
21
+ "update": "updates --update ./ && cupdate"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/cameraui/plugins/issues"
25
+ },
26
+ "engines": {
27
+ "camera.ui": ">=0.0.50",
28
+ "node": ">=22.0.0"
29
+ },
30
+ "homepage": "https://github.com/cameraui/plugins/tree/main/camera-ui-ncnn#readme",
31
+ "keywords": [
32
+ "camera-ui-plugin",
33
+ "object",
34
+ "clip-detection",
35
+ "clip",
36
+ "face-detection",
37
+ "face",
38
+ "license-plate",
39
+ "lpd",
40
+ "ocr",
41
+ "alpr",
42
+ "ncnn",
43
+ "detection"
44
+ ],
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/cameraui/plugins.git",
49
+ "directory": "camera-ui-ncnn"
50
+ },
51
+ "files": [
52
+ "bundle.zip",
53
+ "CHANGELOG.md"
54
+ ]
55
+ }