Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
open3d / labextension / package.json
Size: Mime:
{
  "name": "open3d",
  "version": "0.19.0",
  "description": "Open3D: A Modern Library for 3D Data Processing.",
  "author": "open3d@intel.com",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/isl-org/Open3D.git"
  },
  "license": "MIT",
  "keywords": [
    "jupyter",
    "widgets",
    "ipython",
    "ipywidgets",
    "jupyterlab-extension"
  ],
  "files": [
    "lib/**/*.js",
    "dist/*.js"
  ],
  "scripts": {
    "clean": "rimraf dist/ && rimraf ../open3d/labextension/ && rimraf ../open3d/nbextension",
    "prepublish": "yarn run clean && yarn run build:prod",
    "build": "webpack --mode=development && yarn run build:labextension:dev",
    "build:prod": "webpack --mode=production && yarn run build:labextension",
    "build:labextension": "jupyter labextension build .",
    "build:labextension:dev": "jupyter labextension build --development True .",
    "watch": "webpack --watch --mode=development",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "devDependencies": {
    "@jupyterlab/builder": "^3.0.0",
    "webpack": "^5",
    "rimraf": "^2.6.1"
  },
  "dependencies": {
    "@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
    "lodash": "^4.17.4",
    "webrtc-adapter": "^4.2.2"
  },
  "jupyterlab": {
    "extension": "lib/labplugin",
    "outputDir": "../open3d/labextension",
    "sharedPackages": {
      "@jupyter-widgets/base": {
        "bundled": false,
        "singleton": true
      }
    },
    "_build": {
      "load": "static/remoteEntry.c8b15cb0a6dd710addd3.js",
      "extension": "./extension"
    }
  }
}