package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@jupyterlab/galata-extension",
  3. "version": "5.5.5",
  4. "private": true,
  5. "description": "JupyterLab UI Testing Framework Extension.",
  6. "keywords": [
  7. "jupyter",
  8. "jupyterlab",
  9. "jupyterlab-extension"
  10. ],
  11. "homepage": "https://github.com/jupyterlab/jupyterlab",
  12. "bugs": {
  13. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/jupyterlab/jupyterlab.git"
  18. },
  19. "license": "BSD-3-Clause",
  20. "author": "Project Jupyter",
  21. "main": "../lib/extension/index.js",
  22. "types": "../lib/extension/index.d.ts",
  23. "files": [
  24. "../lib/extension/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
  25. ],
  26. "scripts": {
  27. "build": "npm run build:lib && npm run build:labextension",
  28. "build:labextension": "node ../../node_modules/@jupyterlab/builder/lib/build-labextension.js --core-path ../../dev_mode --development .",
  29. "build:lib": "tsc",
  30. "clean": "npm run clean:lib && npm run clean:labextension",
  31. "clean:labextension": "rimraf ../../jupyterlab/galata/@jupyterlab",
  32. "clean:lib": "rimraf ../lib/extension tsconfig.tsbuildinfo"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/application": "^4.5.5",
  36. "@jupyterlab/apputils": "^4.6.5",
  37. "@jupyterlab/cells": "^4.5.5",
  38. "@jupyterlab/debugger": "^4.5.5",
  39. "@jupyterlab/docmanager": "^4.5.5",
  40. "@jupyterlab/nbformat": "^4.5.5",
  41. "@jupyterlab/notebook": "^4.5.5",
  42. "@jupyterlab/settingregistry": "^4.5.5",
  43. "@lumino/algorithm": "^2.0.4",
  44. "@lumino/coreutils": "^2.2.2",
  45. "@lumino/signaling": "^2.1.5"
  46. },
  47. "devDependencies": {
  48. "@jupyterlab/builder": "^4.5.5",
  49. "rimraf": "~5.0.5",
  50. "typescript": "~5.5.4"
  51. },
  52. "jupyterlab": {
  53. "extension": true,
  54. "outputDir": "../../jupyterlab/galata/@jupyterlab/galata-extension",
  55. "_build": {
  56. "load": "static/remoteEntry.3420edd75a6c295ff10c.js",
  57. "extension": "./extension"
  58. }
  59. }
  60. }