{
  "name": "@phensley/language-tag",
  "version": "1.14.0",
  "description": "Parsing and construction of BCP 47 language tags",
  "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": {
    "tslib": "^2.8.1"
  },
  "scripts": {
    "api": "api-extractor run -c ./etc/api-extractor.json --verbose",
    "api:local": "pnpm run api -l",
    "bench:off": "ts-node __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",
    "clean:full": "pnpm run clean && rimraf ./node_modules",
    "coverage": "vitest run --coverage",
    "lint": "eslint src __tests__",
    "prepublish": "pnpm run build",
    "test": "vitest --run",
    "test:watch": "vitest"
  }
}