@camera.ui/camera-ui-wasm-motion 0.0.15 → 0.0.17

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 +8 -7
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,30 +1,31 @@
1
1
  {
2
2
  "displayName": "WASM Motion",
3
3
  "name": "@camera.ui/camera-ui-wasm-motion",
4
- "version": "0.0.15",
5
- "description": "camera.ui wasm motion detection plugin",
4
+ "version": "0.0.17",
5
+ "description": "Browser-based motion detection using WebAssembly. Fast, client-side movement analysis with cross-platform support.",
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 && npm run build:wasm && tsc",
11
11
  "build:wasm": "cd ./src/wasm && asc assembly/* --config asconfig.json && cd ../../",
12
- "bundle": "npm run format && npm run lint && npm run build && cui bundle",
12
+ "bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
13
+ "bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
13
14
  "format": "prettier --write \"src/\" --ignore-unknown --no-error-on-unmatched-pattern",
14
15
  "install-updates": "npm i --save",
15
16
  "lint": "eslint .",
16
17
  "lint:fix": "eslint --fix .",
17
18
  "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": "cui publish --alpha",
19
- "publish:beta": "cui publish --beta",
20
- "publish:latest": "cui publish --latest",
19
+ "publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
20
+ "publish:beta": "npm i --save && npm run bundle && cui publish --beta",
21
+ "publish:latest": "npm i --save && npm run bundle && cui publish --latest",
21
22
  "update": "updates --update ./"
22
23
  },
23
24
  "bugs": {
24
25
  "url": "https://github.com/seydx/camera.ui/issues"
25
26
  },
26
27
  "engines": {
27
- "camera.ui": ">=0.0.34-alpha.4",
28
+ "camera.ui": ">=0.0.37",
28
29
  "node": ">=20.18.0"
29
30
  },
30
31
  "homepage": "https://github.com/seydx/camera.ui#readme",