@itwin/appui-abstract
Version:
iTwin.js UI abstractions
74 lines • 2.66 kB
JSON
{
"name": "@itwin/appui-abstract",
"version": "5.0.1",
"description": "iTwin.js UI abstractions",
"main": "lib/cjs/appui-abstract.js",
"module": "lib/esm/appui-abstract.js",
"typings": "lib/cjs/appui-abstract",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/itwinjs-core.git",
"directory": "ui/appui-abstract"
},
"keywords": [
"Bentley",
"BIM",
"iModel",
"iTwin.js"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"peerDependencies": {
"@itwin/core-bentley": "5.0.1"
},
"//devDependencies": [
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
],
"devDependencies": {
"@itwin/eslint-plugin": "5.0.0-dev.1",
"@types/chai": "4.3.1",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.0",
"babel-loader": "~8.2.5",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^4.3.10",
"cpx2": "^8.0.0",
"eslint": "^9.13.0",
"glob": "^10.3.12",
"mocha": "^11.1.0",
"raf": "^3.4.0",
"rimraf": "^6.0.1",
"sinon": "^17.0.2",
"sinon-chai": "^3.7.0",
"source-map-loader": "^5.0.0",
"typescript": "~5.6.2",
"webpack": "^5.97.1",
"@itwin/core-bentley": "5.0.1",
"@itwin/certa": "5.0.1",
"@itwin/build-tools": "5.0.1"
},
"//dependencies": [
"NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API",
"NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"
],
"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",
"copy:locale": "cpx \"./public/**/*\" ./lib/public",
"pseudolocalize": "betools pseudolocalize --englishDir ./public/locales/en --out ./public/locales/en-PSEUDO",
"clean": "rimraf -g lib .rush/temp/package-deps*.json",
"cover": "npm -s test",
"docs": "betools docs --json=../../generated-docs/ui/appui-abstract/file.json --tsIndexFile=./appui-abstract.ts --onlyJson",
"lint": "eslint \"./src/**/*.ts\" 1>&2",
"extract-api": "betools extract-api --entry=appui-abstract",
"test": "npm run -s webpackTests && certa -r chrome",
"test:watch": "npm -s test -- --reporter min --watch-extensions ts --watch",
"webpackTests": "webpack --config ./src/test/utils/webpack.config.js 1>&2"
}
}