@itwin/presentation-frontend
Version:
Frontend of iModel.js Presentation library
99 lines • 3.54 kB
JSON
{
"name": "@itwin/presentation-frontend",
"version": "4.10.13",
"description": "Frontend of iModel.js Presentation library",
"main": "lib/cjs/presentation-frontend.js",
"module": "lib/esm/presentation-frontend.js",
"typings": "lib/cjs/presentation-frontend",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/itwinjs-core.git",
"directory": "presentation/frontend"
},
"keywords": [
"Bentley",
"EC",
"Presentation",
"iTwin.js",
"Frontend"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"dependencies": {
"@itwin/unified-selection": "^1.1.1",
"rxjs": "^7.8.1",
"rxjs-for-await": "^1.0.0"
},
"peerDependencies": {
"@itwin/core-bentley": "^4.10.13",
"@itwin/core-common": "^4.10.13",
"@itwin/core-frontend": "^4.10.13",
"@itwin/core-quantity": "^4.10.13",
"@itwin/ecschema-metadata": "^4.10.13",
"@itwin/presentation-common": "^4.10.13"
},
"devDependencies": {
"@itwin/eslint-plugin": "5.0.0-dev.1",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "^7",
"@types/chai-jest-snapshot": "^1.3.8",
"@types/deep-equal": "^1",
"@types/faker": "^4.1.0",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-jest-snapshot": "^2.0.0",
"cpx2": "^3.0.0",
"cross-env": "^7.0.3",
"deep-equal": "^1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"faker": "^4.1.0",
"jsdom": "^19.0.0",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"sinon": "^17.0.2",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.6",
"typemoq": "^2.1.0",
"typescript": "~5.6.2",
"@itwin/build-tools": "4.10.13",
"@itwin/ecschema-metadata": "4.10.13",
"@itwin/core-common": "4.10.13",
"@itwin/core-i18n": "4.10.13",
"@itwin/core-frontend": "4.10.13",
"@itwin/core-bentley": "4.10.13",
"@itwin/core-quantity": "4.10.13",
"@itwin/presentation-common": "4.10.13"
},
"nyc": {
"extends": "./node_modules/@itwin/build-tools/.nycrc"
},
"scripts": {
"build": "npm run -s build:cjs && npm run -s build:esm",
"build:cjs": "npm run -s copy:cjs && tsc -p tsconfig.cjs.json",
"build:esm": "npm run -s copy:esm && tsc -p tsconfig.esm.json",
"copy:cjs": "cpx \"./src/**/*.json\" ./lib/cjs",
"copy:esm": "cpx \"./src/**/*.json\" ./lib/esm",
"build:watch": "npm run -s build:cjs -- -w",
"clean": "rimraf lib .rush/temp/package-deps*.json",
"cover": "nyc npm -s test",
"docs": "npm run -s docs:reference && npm run -s docs:changelog",
"docs:changelog": "cpx ./CHANGELOG.md ../../generated-docs/presentation/presentation-frontend",
"docs:reference": "betools docs --json=../../generated-docs/presentation/presentation-frontend/file.json --tsIndexFile=presentation-frontend.ts --onlyJson",
"extract": "betools extract --fileExt=ts --extractFrom=./src/test --recursive --out=../../generated-docs/extract",
"extract-api": "betools extract-api --entry=presentation-frontend",
"lint": "eslint \"./src/**/*.ts\" 1>&2",
"test": "mocha -r jsdom-global/register --config ../.mocharc.json \"./lib/cjs/test/**/*.test.js\"",
"test:watch": "npm -s test -- --reporter min --watch-extensions ts --watch",
"prettier:fix": "prettier --write ."
}
}