package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@jupyterlab/logconsole-extension",
  3. "version": "3.0.0-rc.15",
  4. "description": "JupyterLab - Log Console Extension",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "schema/*.json",
  28. "style/index.js"
  29. ],
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -w --listEmittedFiles"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^3.0.0-rc.15",
  38. "@jupyterlab/apputils": "^3.0.0-rc.15",
  39. "@jupyterlab/coreutils": "^5.0.0-rc.15",
  40. "@jupyterlab/logconsole": "^3.0.0-rc.15",
  41. "@jupyterlab/mainmenu": "^3.0.0-rc.15",
  42. "@jupyterlab/notebook": "^3.0.0-rc.15",
  43. "@jupyterlab/rendermime": "^3.0.0-rc.15",
  44. "@jupyterlab/settingregistry": "^3.0.0-rc.15",
  45. "@jupyterlab/statusbar": "^3.0.0-rc.15",
  46. "@jupyterlab/translation": "^3.0.0-rc.15",
  47. "@jupyterlab/ui-components": "^3.0.0-rc.15",
  48. "@lumino/coreutils": "^1.5.3",
  49. "@lumino/signaling": "^1.4.3",
  50. "@lumino/widgets": "^1.16.1",
  51. "react": "^17.0.1"
  52. },
  53. "devDependencies": {
  54. "rimraf": "~3.0.0",
  55. "typescript": "~4.1.3"
  56. },
  57. "publishConfig": {
  58. "access": "public"
  59. },
  60. "jupyterlab": {
  61. "extension": true,
  62. "schemaDir": "schema"
  63. },
  64. "styleModule": "style/index.js"
  65. }