{
  "name": "@itwin/core-common",
  "version": "5.9.4",
  "description": "iTwin.js components common to frontend and backend",
  "main": "lib/cjs/core-common.js",
  "module": "lib/esm/core-common.js",
  "typings": "lib/cjs/core-common",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/iTwin/itwinjs-core.git",
    "directory": "core/common"
  },
  "keywords": [
    "Bentley",
    "BIM",
    "iModel",
    "digital-twin",
    "iTwin"
  ],
  "author": {
    "name": "Bentley Systems, Inc.",
    "url": "http://www.bentley.com"
  },
  "dependencies": {
    "flatbuffers": "~1.12.0",
    "js-base64": "^3.6.1"
  },
  "peerDependencies": {
    "@itwin/core-bentley": "5.9.4",
    "@itwin/core-geometry": "5.9.4"
  },
  "devDependencies": {
    "@itwin/eslint-plugin": "^6.0.0",
    "@itwin/object-storage-core": "^3.0.4",
    "@types/chai": "4.3.1",
    "@types/flatbuffers": "~1.10.0",
    "@types/node": "~20.17.0",
    "@vitest/coverage-v8": "^3.0.6",
    "eslint": "^9.31.0",
    "nyc": "^17.1.0",
    "rimraf": "^6.0.1",
    "typescript": "~5.6.2",
    "vitest": "^3.0.6",
    "@itwin/build-tools": "5.9.4",
    "@itwin/core-geometry": "5.9.4",
    "@itwin/core-bentley": "5.9.4"
  },
  "nyc": {
    "extends": "./node_modules/@itwin/build-tools/.nycrc",
    "all": true
  },
  "scripts": {
    "build": "npm run -s build:cjs && npm run -s build:esm",
    "build:cjs": "tsc 1>&2 --outDir lib/cjs",
    "build:esm": "tsc 1>&2 --module ES2022 --outDir lib/esm",
    "clean": "rimraf -g lib .rush/temp/package-deps*.json",
    "docs": "betools docs --json=../../generated-docs/core/core-common/file.json --tsIndexFile=./core-common.ts --onlyJson",
    "extract-api": "betools extract-api --entry=core-common && npm run extract-extension-api",
    "extract-extension-api": "eslint --no-inline-config -c extraction.eslint.config.js  \"./src/**/*.ts\" 1>&2",
    "lint": "eslint \"./src/**/*.ts\" 1>&2",
    "lint-fix": "eslint --fix -f visualstudio \"./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",
    "cover": "vitest --run --coverage"
  }
}