{
  "name": "@phensley/cldr-core",
  "version": "1.14.0",
  "description": "Core library for @phensley/cldr",
  "main": "lib/index.js",
  "module": "lib-es/index.js",
  "types": "lib/index.d.ts",
  "author": "Patrick Hensley <pathensley@gmail.com>",
  "license": "Apache-2.0",
  "homepage": "https://github.com/phensley/cldr-engine/",
  "repository": {
    "type": "git",
    "url": "https://github.com/phensley/cldr-engine"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib/",
    "lib-es/"
  ],
  "dependencies": {
    "@phensley/cldr-types": "~1.14.0",
    "@phensley/cldr-utils": "~1.14.0",
    "@phensley/decimal": "~1.14.0",
    "@phensley/language-tag": "~1.14.0",
    "@phensley/locale": "~1.14.0",
    "@phensley/locale-matcher": "~1.14.0",
    "@phensley/messageformat": "~1.14.0",
    "@phensley/plurals": "~1.14.0",
    "@phensley/timezone": "~1.14.0",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@js-temporal/polyfill": "0.5.1",
    "@types/node": "^24.10.0"
  },
  "scripts": {
    "api": "api-extractor run -c ./etc/api-extractor.json --verbose",
    "api:local": "pnpm run api -l",
    "bench": "ts-node -P tsconfig.lint.json __benchmarks__/",
    "build": "pnpm run build:cj && pnpm run build:es",
    "build:cj": "tsc -p ./tsconfig.json",
    "build:es": "tsc -p ./tsconfig.json --module esnext --outDir lib-es",
    "build:lint": "tsc -p ./tsconfig.lint.json",
    "build:watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput",
    "clean": "rimraf ./lib ./lib-es ./.scratch ./.custom-packs",
    "clean:full": "pnpm run clean && rimraf ./node_modules",
    "coverage": "vitest run --coverage",
    "lint": "eslint src __benchmarks__ __tests__",
    "prepublish": "pnpm run build",
    "test": "vitest --run",
    "test:watch": "vitest"
  }
}