UNPKG

@itwin/webgl-compatibility

Version:

APIs for determining the level of compatibility of a browser+device with the iTwin.js rendering system.

59 lines 2.05 kB
{ "name": "@itwin/webgl-compatibility", "version": "5.4.2", "description": "APIs for determining the level of compatibility of a browser+device with the iTwin.js rendering system.", "license": "MIT", "main": "lib/cjs/webgl-compatibility.js", "module": "lib/esm/webgl-compatibility.js", "typings": "lib/cjs/webgl-compatibility.js", "repository": { "type": "git", "url": "https://github.com/iTwin/itwinjs-core.git", "directory": "core/webgl-compatibility" }, "keywords": [ "Bentley", "BIM", "iModel", "Compatibility", "Capabilities", "WebGL" ], "author": { "name": "Bentley Systems, Inc.", "url": "http://www.bentley.com" }, "dependencies": { "@itwin/core-bentley": "5.4.2" }, "devDependencies": { "@itwin/eslint-plugin": "5.2.2-dev.2", "@types/chai": "4.3.1", "@types/mocha": "^10.0.6", "babel-loader": "~8.2.5", "babel-plugin-istanbul": "^7.0.0", "chai": "^4.3.10", "eslint": "^9.31.0", "glob": "^10.5.0", "mocha": "^11.1.0", "rimraf": "^6.0.1", "source-map-loader": "^5.0.0", "typescript": "~5.6.2", "webpack": "^5.97.1", "@itwin/build-tools": "5.4.2", "@itwin/certa": "5.4.2" }, "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", "cover": "npm -s test", "docs": "betools docs --json=../../generated-docs/core/webgl-compatibility/file.json --tsIndexFile=./webgl-compatibility.ts --onlyJson", "extract-api": "betools extract-api --entry=webgl-compatibility", "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": "npm run -s webpackTests && certa -r chrome", "webpackTests": "webpack --config ./src/test/utils/webpack.config.js 1>&2" } }