{
  "name": "@imgly/vectorizer",
  "type": "module",
  "version": "1.0.0",
  "description": "Vectorize Images in the Browser and NodeJs",
  "keywords": [
    "vectorizer",
    "client-side",
    "data-privacy"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/imgly/vectorizer.git"
  },
  "license": "SEE LICENSE IN LICENSE.md",
  "author": {
    "name": "IMG.LY GmbH",
    "email": "support@img.ly",
    "url": "https://img.ly"
  },
  "bugs": {
    "email": "support@img.ly"
  },
  "source": "./src/lib.ts",
  "main": "./dist/lib.cjs",
  "module": "./dist/lib.mjs",
  "browser": "./dist/lib.mjs",
  "types": "./types/src/lib/lib.d.ts",
  "exports": {
    ".": {
      "require": "./dist/lib.cjs",
      "import": "./dist/lib.mjs",
      "browser": "./dist/lib.mjs",
      "types": "./types/src/lib/lib.d.ts"
    }
  },
  "files": [
    "LICENSE.md",
    "README.md",
    "CHANGELOG.md",
    "ThirdPartyLicenses.json",
    "dist/",
    "types/",
    "bin/"
  ],
  "scripts": {
    "start": "npm run watch",
    "clean": "npx rimraf gen dist",
    "test": "npx jest --passWithNoTests",
    "build": "npm run clean &&  npm run package:resources && node scripts/build.mjs && npm run types && node scripts/build.tests.mjs && npm run changelog:generate",
    "types": " npx tsc --emitDeclarationOnly",
    "pretty": "npx prettier --write .",
    "lint": "npx prettier --write .",
    "changelog:generate": "../../scripts/changelog/changelog-generate.mjs",
    "publish:latest": "npm run build && npm publish --tag latest --access public",
    "publish:next": "npm run build && npm publish --tag next --access public",
    "package:resources": "node ../../scripts/resource/resource-generate.mjs",
    "package:pack": "npm run build && npm pack . --pack-destination ../../releases"
  },
  "dependencies": {
    "lodash-es": "^4.17.21",
    "tslog": "^4.9.2",
    "zod": "^3.21.4"
  },
  "devDependencies": {
    "@imgly/vectorizer-rs": "file:../vectorizer/dist/web",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.3.1",
    "assert": "^2.0.0",
    "esbuild": "^0.18.18",
    "glob": "^10.3.3",
    "npm-dts": "^1.3.12",
    "process": "^0.11.10",
    "ts-loader": "^9.4.3",
    "tslib": "^2.5.3",
    "typescript": "^5.1.3",
    "util": "^0.12.5"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "jsx",
      "mjs",
      "cjs"
    ],
    "testRegex": "gen\\/tests\\/.*\\.test\\.[c]js$"
  }
}