@camera.ui/camera-ui-onnx 0.0.6 → 0.0.7

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.
Files changed (2) hide show
  1. package/bundle.zip +0 -0
  2. package/package.json +4 -5
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,19 +1,18 @@
1
1
  {
2
2
  "displayName": "ONNX",
3
3
  "name": "@camera.ui/camera-ui-onnx",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "description": "ONNX Runtime detection backend for camera.ui. Runs object detection, face detection and recognition, license plate recognition with OCR, and CLIP semantic embeddings.",
6
6
  "author": "seydx (https://github.com/cameraui/plugins)",
7
7
  "main": "./dist/main.py",
8
8
  "type": "commonjs",
9
9
  "scripts": {
10
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",
11
+ "bundle": "npm run format && npm run lint && npm run build && cui bundle",
12
+ "bundle:dev": "npm run format && npm run lint && npm run build && cross-env MODE=development cui bundle",
13
13
  "format": "ruff format",
14
14
  "install-updates": "npm i --save",
15
- "lint": "ruff check",
16
- "lint:fix": "ruff check --fix",
15
+ "lint": "ruff check --fix",
17
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)}\"",
18
17
  "publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
19
18
  "publish:beta": "npm i --save && npm run bundle && cui publish --beta",