UNPKG

@pdftron/webviewer-bim-client

Version:

Addon for WebViewer that allows you to view, annotate, and collaborate on 3D models.

107 lines (106 loc) 3.53 kB
{ "name": "@pdftron/webviewer-bim-client", "version": "2.0.0", "description": "Addon for WebViewer that allows you to view, annotate, and collaborate on 3D models.", "main": "dist/webviewer-bim-min.js", "files": [ "dist/" ], "types": "types/src/index.d.ts", "scripts": { "build-doc": "rm -rf doc && ./node_modules/.bin/jsdoc -c jsdocconfig.json -t ./node_modules/ink-docstrap/template -R README.md", "build": "webpack --config webpack.config.prod.js --mode=production", "build-demo": "webpack --mode=production --config webpack.config.prod.js", "build-dev": "webpack --config webpack.config.prod.js --mode=development", "watch-debug": "webpack --watch --mode=development --config webpack.config.dev.js", "release-patch": "npm version patch && npm publish --access public", "release-minor": "npm version minor && npm publish --access public", "release-major": "npm version major && npm publish --access public", "prepublishOnly": "npm run build", "postpublish": "git push", "test": "jest --coverage", "test-package": "npm run build && npm pack && tar -xzvf pdftron-webviewer-bim-client*.tgz && cd package && npm link", "runPolarisScan": "polaris analyze -w", "cleanup-test-package": "cd package; npm unlink -g && cd .. && rm -r package && rm pdftron-webviewer-bim-client*.tgz" }, "keywords": [ "model", "3d", "annotation tool", "annotating", "collaboration", "webviewer" ], "license": "See README.MD", "author": "Bryan Fox <bfox@pdftron.com> (https://pdftron.com/)", "dependencies": { "classnames": "^2.2.6", "debounce": "^1.2.1", "identity-obj-proxy": "^3.0.0", "lodash.isempty": "^4.4.0", "lodash.isnil": "^4.0.0", "lodash.isnumber": "^3.0.3", "lodash.isobject": "^3.0.2", "uuid": "^9.0.0" }, "devDependencies": { "@babel/cli": "^7.17.10", "@babel/core": "^7.17.10", "@babel/node": "^7.17.10", "@babel/plugin-transform-modules-commonjs": "^7.17.9", "@babel/plugin-transform-runtime": "^7.10.1", "@babel/preset-env": "^7.17.10", "@babel/preset-react": "^7.10.1", "@babel/register": "^7.17.7", "@svgr/webpack": "^6.3.1", "babel-eslint": "^10.1.0", "babel-jest": "^28.0.3", "babel-loader": "^8.1.0", "babel-polyfill": "^6.26.0", "babel-register": "^6.26.0", "copy-webpack-plugin": "^9.1.0", "css-loader": "^5.2.4", "eslint": "^7.8.1", "eslint-plugin-babel": "^5.3.1", "eslint-plugin-import": "^2.22.0", "eslint-plugin-react": "^7.20.6", "eslint-plugin-react-hooks": "^4.1.2", "ink-docstrap": "^1.3.2", "isomorphic-fetch": "^3.0.0", "jest": "^28.0.3", "jest-environment-jsdom": "^28.0.2", "jsdoc": "^3.6.7", "jsdom": "^19.0.0", "mocha": "^9.2.2", "raw-loader": "^4.0.2", "sass": "^1.26.10", "sass-loader": "^9.0.2", "style-loader": "^1.2.1", "ts-loader": "^9.2.1", "typescript": "^4.2.4", "url-loader": "^4.1.0", "webpack": "^5.37.0", "webpack-cli": "^4.7.0" }, "jest": { "moduleFileExtensions": [ "js", "jsx" ], "testEnvironment": "jsdom", "roots": [ "<rootDir>" ], "modulePaths": [ "<rootDir>", "/src" ], "moduleDirectories": [ "node_modules" ], "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/mocks/fileMock.js", "\\.(css|less|scss|svg)$": "identity-obj-proxy" } } }