{
  "name": "@webex/ladon-ts",
  "version": "5.10.0",
  "description": "WebexIntelligence computer vision library",
  "type": "module",
  "main": "build/module/index.js",
  "module": "build/module/index.js",
  "typings": "build/module/index.d.ts",
  "exports": {
    ".": {
      "import": "./build/module/index.js",
      "require": "./build/module/index.js"
    },
    "./worker": {
      "import": "./build/worker/segmentation.js"
    }
  },
  "keywords": [],
  "license": "SEE LICENSE in LICENSE",
  "scripts": {
    "update-version": "node -p \"const fs = require('fs'); function handle_result(err){console.log(err);}; fs.writeFile('src/lib/version.ts', 'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version).replaceAll('\\\"', '\\'') + ';\\n', handle_result);\"",
    "clean": "rimraf build",
    "prebuild": "npm run clean",
    "build": "run-s clean build:module build:worker copy:worker",
    "build:module": "vite build",
    "build:worker": "npm --prefix ./worker run build",
    "build:test": "npm --prefix ./test run build",
    "copy:worker": "cpx './worker/dist/*' './build/worker/'",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint src --ext .ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "check-cli": "run-s test diff-integration-tests check-integration-tests",
    "check-integration-tests": "run-s check-integration-test:*",
    "diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
    "watch:build": "tsc -p tsconfig.module.json -w",
    "watch:module": "vite build --watch",
    "doc": "run-s doc:html && open-cli build/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --out build/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs -b $RELEASE_BRANCH",
    "version": "standard-version",
    "test-release": "run-s test build doc:html",
    "prepare-release": "run-s test version update-version build doc:html"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/mocha": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^4.0.1",
    "@typescript-eslint/parser": "^4.0.1",
    "chai": "^4.3.4",
    "cpx": "^1.5.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^7.8.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^3.0.2",
    "eslint-plugin-import": "^2.22.0",
    "gh-pages": "^3.1.0",
    "mocha": "^9.1.3",
    "npm-run-all": "^4.1.5",
    "open-cli": "^6.0.1",
    "parcel": "^2.12.0",
    "prettier": "^2.1.1",
    "rimraf": "^6.0.1",
    "standard-version": "^9.0.0",
    "typedoc": "^0.23.24",
    "typescript": "^4.7.4",
    "vite": "^6.0.3",
    "vite-plugin-copy": "^0.1.6",
    "vite-plugin-dts": "^4.3.0"
  },
  "optionalDependencies": {
    "@rollup/rollup-linux-x64-gnu": "4.36.0"
  },
  "files": [
    "build/main",
    "build/module",
    "build/worker",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "engines": {
    "npm": ">=7.0.0",
    "node": ">=14.0.0"
  },
  "dependencies": {
    "js-logger": "^1.6.1"
  }
}
