UNPKG

@itwin/presentation-shared

Version:

The package contains types and utilities used across different iTwin.js Presentation packages.

62 lines 2.07 kB
{ "name": "@itwin/presentation-shared", "version": "1.2.14", "description": "The package contains types and utilities used across different iTwin.js Presentation packages.", "license": "MIT", "author": { "name": "Bentley Systems, Inc.", "url": "http://www.bentley.com" }, "repository": { "type": "git", "url": "https://github.com/iTwin/presentation.git", "directory": "packages/shared" }, "keywords": [ "Bentley", "EC", "ECSQL", "iModel", "iTwin.js", "Presentation" ], "type": "module", "main": "lib/cjs/presentation-shared.js", "types": "lib/cjs/presentation-shared", "module": "lib/esm/presentation-shared.js", "exports": { ".": { "import": "./lib/esm/presentation-shared.js", "require": "./lib/cjs/presentation-shared.js" }, "./package.json": "./package.json" }, "dependencies": { "@itwin/core-bentley": "^5.9.4" }, "devDependencies": { "@itwin/build-tools": "^5.10.0-dev.18", "@itwin/eslint-plugin": "^6.1.0", "@types/node": "^24.12.4", "@vitest/coverage-v8": "^4.1.7", "eslint": "^9.39.4", "rimraf": "^6.1.3", "typescript": "~6.0.3", "vitest": "^4.1.7", "presentation-test-utilities": "^0.0.1" }, "scripts": { "build": "npm run -s typecheck && npm run -s build:cjs && npm run -s build:esm", "build:cjs": "node ../../scripts/package-cjs.mjs ./lib/cjs && tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "clean": "rimraf lib temp", "cover": "vitest run --coverage", "lint": "eslint \"./src/**/*.ts\"", "typecheck": "tsc -p tsconfig.json --noEmit", "test": "vitest run", "test:watch": "vitest", "extract-api": "betools extract-api --entry=presentation-shared --apiReportFolder=./api --apiReportTempFolder=./api/temp --apiSummaryFolder=./api --includeUnexportedApis", "check-internal": "node ../../scripts/checkInternal.js --apiSummary ./api/presentation-shared.api.md", "validate-markdowns": "node ../../scripts/validateMarkdowns.js README.md" } }