{
  "name": "@ethisyscore/core-utils",
  "version": "1.111.0",
  "description": "Framework-agnostic utilities shared by the EthisysCore monolith and plugins: date/time/duration helpers (over date-fns), RFC 6902 JSON Patch generate/apply (over mutative), and list-response envelope normalisation. Pure TypeScript; no React or MUI. The dayjs-backed picker helper lives behind the ./date/dayjs sub-path so the core entry stays dayjs-free.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./date": {
      "types": "./dist/date/index.d.ts",
      "import": "./dist/date/index.js",
      "require": "./dist/date/index.cjs"
    },
    "./date/dayjs": {
      "types": "./dist/date/dayjs.d.ts",
      "import": "./dist/date/dayjs.js",
      "require": "./dist/date/dayjs.cjs"
    },
    "./date/org-format": {
      "types": "./dist/date/org-format.d.ts",
      "import": "./dist/date/org-format.js",
      "require": "./dist/date/org-format.cjs"
    },
    "./patch": {
      "types": "./dist/patch/index.d.ts",
      "import": "./dist/patch/index.js",
      "require": "./dist/patch/index.cjs"
    },
    "./list": {
      "types": "./dist/list/index.d.ts",
      "import": "./dist/list/index.js",
      "require": "./dist/list/index.cjs"
    },
    "./money": {
      "types": "./dist/money/index.d.ts",
      "import": "./dist/money/index.js",
      "require": "./dist/money/index.cjs"
    },
    "./number": {
      "types": "./dist/number/index.d.ts",
      "import": "./dist/number/index.js",
      "require": "./dist/number/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "lint": "tsc --noEmit"
  },
  "dependencies": {
    "date-fns": "^4.1.0",
    "mutative": "^1.0.0"
  },
  "peerDependencies": {
    "dayjs": ">=1.11"
  },
  "peerDependenciesMeta": {
    "dayjs": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^25.5.0",
    "dayjs": "^1.11.19",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0"
  },
  "keywords": [
    "ethisyscore",
    "date",
    "time",
    "duration",
    "json-patch",
    "utilities",
    "plugin"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/ethisysltd/ethisyscore-plugin-sdk"
  },
  "engines": {
    "node": ">=20"
  }
}
