package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "@jupyter-widgets/jupyterlab-manager",
  3. "version": "3.0.1",
  4. "description": "The JupyterLab extension providing Jupyter widgets.",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab notebook",
  9. "jupyterlab-extension"
  10. ],
  11. "homepage": "https://github.com/jupyter-widgets/ipywidgets",
  12. "bugs": {
  13. "url": "https://github.com/jupyter-widgets/ipywidgets/issues"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/jupyter-widgets/ipywidgets"
  18. },
  19. "license": "BSD-3-Clause",
  20. "author": "Project Jupyter",
  21. "sideEffects": [
  22. "style/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "files": [
  27. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "dist/*.js",
  30. "schema/*.json"
  31. ],
  32. "scripts": {
  33. "build": "jlpm run build:lib && jlpm run build:labextension:dev",
  34. "build:prod": "jlpm run build:lib && jlpm run build:labextension",
  35. "build:labextension": "jupyter labextension build .",
  36. "build:labextension:dev": "jupyter labextension build --development True .",
  37. "build:lib": "tsc",
  38. "clean": "jlpm run clean:lib",
  39. "clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
  40. "clean:labextension": "rimraf jupyterlab_widgets/labextension",
  41. "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
  42. "eslint": "eslint . --ext .ts,.tsx --fix",
  43. "eslint:check": "eslint . --ext .ts,.tsx",
  44. "install:extension": "jupyter labextension develop --overwrite .",
  45. "prepare": "jlpm run clean && jlpm run build:prod",
  46. "watch": "run-p watch:src watch:labextension",
  47. "watch:labextension": "jupyter labextension watch .",
  48. "watch:src": "tsc -w"
  49. },
  50. "dependencies": {
  51. "@jupyter-widgets/base": "^4.0.0",
  52. "@jupyter-widgets/controls": "^3.0.0",
  53. "@jupyter-widgets/output": "^4.0.0",
  54. "@jupyterlab/application": "^3.0.0",
  55. "@jupyterlab/docregistry": "^3.0.0",
  56. "@jupyterlab/logconsole": "^3.0.0",
  57. "@jupyterlab/mainmenu": "^3.0.0",
  58. "@jupyterlab/nbformat": "^3.0.0",
  59. "@jupyterlab/notebook": "^3.0.0",
  60. "@jupyterlab/outputarea": "^3.0.0",
  61. "@jupyterlab/rendermime": "^3.0.0",
  62. "@jupyterlab/rendermime-interfaces": "^3.0.0",
  63. "@jupyterlab/services": "^6.0.0",
  64. "@jupyterlab/settingregistry": "^3.0.0",
  65. "@lumino/algorithm": "^1.1.0",
  66. "@lumino/coreutils": "^1.3.0",
  67. "@lumino/disposable": "^1.1.1",
  68. "@lumino/messaging": "^1.2.1",
  69. "@lumino/properties": "^1.1.0",
  70. "@lumino/signaling": "^1.2.0",
  71. "@lumino/widgets": "^1.3.0",
  72. "@types/backbone": "^1.4.1",
  73. "jquery": "^3.1.1",
  74. "semver": "^6.1.1"
  75. },
  76. "devDependencies": {
  77. "@jupyterlab/builder": "^3.0.0",
  78. "@jupyterlab/cells": "^3.0.0",
  79. "@types/semver": "^6.0.1",
  80. "@typescript-eslint/eslint-plugin": "^2.27.0",
  81. "@typescript-eslint/parser": "^2.27.0",
  82. "eslint": "^7.5.0",
  83. "eslint-config-prettier": "^6.10.1",
  84. "eslint-plugin-prettier": "^3.1.2",
  85. "npm-run-all": "^4.1.5",
  86. "prettier": "^1.19.0",
  87. "rimraf": "^3.0.2",
  88. "typescript": "~3.9.0"
  89. },
  90. "jupyterlab": {
  91. "extension": true,
  92. "outputDir": "jupyterlab_widgets/labextension",
  93. "schemaDir": "./schema"
  94. },
  95. "gitHead": "febdb4b2181951746fee4e728da043631aba33ef"
  96. }