{
  "name": "@itwin/core-quantity",
  "version": "5.11.2",
  "description": "Quantity parsing, formatting and conversions for iModel.js",
  "main": "lib/cjs/core-quantity.js",
  "module": "lib/esm/core-quantity.js",
  "typings": "lib/cjs/core-quantity",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/iTwin/itwinjs-core.git",
    "directory": "core/quantity"
  },
  "keywords": [
    "Bentley",
    "iModel",
    "Quantity"
  ],
  "author": {
    "name": "Bentley Systems, Inc.",
    "url": "http://www.bentley.com"
  },
  "devDependencies": {
    "@bentley/units-schema": "^1.0.10",
    "@itwin/eslint-plugin": "^6.0.0",
    "@types/node": "~20.17.0",
    "@vitest/coverage-v8": "^4.1.8",
    "eslint": "^9.31.0",
    "rimraf": "^6.0.1",
    "tsx": "~4.22.0",
    "typescript": "~5.6.2",
    "vitest": "^4.1.8",
    "@itwin/build-tools": "5.11.2",
    "@itwin/core-bentley": "5.11.2"
  },
  "peerDependencies": {
    "@itwin/core-bentley": "5.11.2"
  },
  "scripts": {
    "build": "tsx scripts/generateUnitsJson.ts && npm run -s build:cjs && npm run -s build:esm && npm run -s build:typecheck",
    "build:cjs": "tsc 1>&2 -p tsconfig.build.json --outDir lib/cjs",
    "build:esm": "tsc 1>&2 -p tsconfig.build.json --module ES2022 --outDir lib/esm",
    "build:typecheck": "tsc 1>&2 -p tsconfig.json --noEmit",
    "clean": "rimraf -g lib .rush/temp/package-deps*.json .nyc_output",
    "extract-api": "betools extract-api --entry=core-quantity",
    "lint": "eslint \"./src/**/*.ts\" 1>&2",
    "lint-deprecation": "eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \"./src/**/*.ts\"",
    "test": "vitest --run",
    "docs": "betools docs --json=../../generated-docs/core/core-quantity/file.json --tsIndexFile=./core-quantity.ts --onlyJson",
    "cover": "vitest --run --coverage",
    "start": "npm run -s lint && npm run -s clean && npm run -s build && npm run -s test & npm run -s cover & npm run -s docs"
  }
}