{
  "name": "@knime/utils",
  "version": "1.11.1",
  "description": "Internal utility functions and constants shared across @knime packages.",
  "repository": {
    "type": "git",
    "url": "https://github.com/knime/webapps-common.git",
    "directory": "packages/utils"
  },
  "homepage": "https://knime.github.io/webapps-common/",
  "license": "GPL 3 and Additional Permissions according to Sec. 7 (SEE the file LICENSE)",
  "author": "KNIME AG, Zurich, Switzerland",
  "type": "module",
  "dependencies": {
    "date-fns": "2.30.0",
    "date-fns-tz": "2.0.0",
    "dompurify": "^3.4.7",
    "filesize": "10.0.6"
  },
  "peerDependencies": {
    "consola": "3.x"
  },
  "devDependencies": {
    "consola": "3.4.2",
    "flush-promises": "^1.0.2",
    "mock-xmlhttprequest": "^8.3.0"
  },
  "main": "src/index.ts",
  "module": "src/index.ts",
  "files": [
    "src",
    "!src/**/__tests__/*",
    "test-utils",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "bin": {
    "pnpm-bulk-audit": "./src/audit/cli.js"
  },
  "exports": {
    ".": {
      "import": "./src/index.ts"
    },
    "./audit": {
      "import": "./src/audit/bulkAudit.js"
    },
    "./globals.d.ts": {
      "import": "./src/config/globals.d.ts"
    },
    "./test-utils": {
      "import": "./test-utils/index.ts"
    }
  },
  "engines": {
    "node": ">=22 <25"
  },
  "scripts": {
    "test:unit": "TZ='Europe/Berlin' vitest"
  }
}