@camera.ui/camera-ui-coreml 0.0.24 → 0.0.26

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 +7 -6
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "displayName": "CoreML",
3
3
  "name": "@camera.ui/camera-ui-coreml",
4
- "version": "0.0.24",
5
- "description": "camera.ui coreml plugin",
4
+ "version": "0.0.26",
5
+ "description": "Powerful object detection using Apple's Core ML framework. Identify and track objects in real-time with high accuracy.",
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": {