{
  "name": "@zappar/zappar",
  "version": "4.3.0",
  "description": "Zappar's computer vision for JavaScript, supporting image, face and instant world tracking, and barcode scanning.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "tests": "webpack --config=webpack.tests.config.js --mode=development && webpack serve --config=webpack.tests.config.js --mode=development ",
    "build-module": "rm -rf lib && tsc && rm -rf lib/tests && mv lib/src/* lib && rm -rf lib/src",
    "build-standalone": "webpack --config=webpack.standalone.config.js --mode=production && rm -rf lib/tests && rm -rf lib/src",
    "build:tests": "webpack --config=webpack.tests.config.js --mode=development",
    "test": "npm run build:tests && playwright test",
    "build": "npm run build-module && npm run build-standalone",
    "typedoc": "typedoc --out docs src/index.ts --excludePrivate --excludeProtected --theme minimal"
  },
  "author": "Zappar Limited",
  "files": [
    "README.md",
    "lib/**/*"
  ],
  "license": "Proprietary",
  "devDependencies": {
    "copy-webpack-plugin": "^13.0.0",
    "ts-node": "10.4.0"
  },
  "dependencies": {
    "@zappar/zappar-cv": "3.9.2",
    "gl-matrix": "3.4.3"
  },
  "engines": {
    "node": ">=12.0.0"
  },
  "release": {
    "extends": "semantic-release-commit-filter",
    "ci": true,
    "branches": [
      "main",
      {
        "name": "beta",
        "channel": "beta",
        "prerelease": "beta"
      },
      {
        "name": "alpha",
        "channel": "alpha",
        "prerelease": "alpha"
      }
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/gitlab",
      "@semantic-release/git",
      [
        "@semantic-release/exec",
        {
          "verifyReleaseCmd": "npx -y semantic-release-npm-workspaces-monorepo cache ${nextRelease.version}"
        }
      ]
    ],
    "tagFormat": "@zappar/zappar@${version}"
  }
}
