package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@jupyterlab/logconsole-extension",
  3. "version": "3.0.0-alpha.4",
  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. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  18. "schema/*.json"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -w --listEmittedFiles"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^3.0.0-alpha.4",
  37. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  38. "@jupyterlab/coreutils": "^5.0.0-alpha.4",
  39. "@jupyterlab/logconsole": "^3.0.0-alpha.4",
  40. "@jupyterlab/mainmenu": "^3.0.0-alpha.4",
  41. "@jupyterlab/nbformat": "^3.0.0-alpha.4",
  42. "@jupyterlab/notebook": "^3.0.0-alpha.4",
  43. "@jupyterlab/rendermime": "^3.0.0-alpha.4",
  44. "@jupyterlab/services": "^6.0.0-alpha.4",
  45. "@jupyterlab/settingregistry": "^3.0.0-alpha.4",
  46. "@jupyterlab/statusbar": "^3.0.0-alpha.4",
  47. "@jupyterlab/ui-components": "^3.0.0-alpha.4",
  48. "@lumino/coreutils": "^1.4.3",
  49. "@lumino/signaling": "^1.3.5",
  50. "@lumino/widgets": "^1.11.1",
  51. "react": "~16.9.0"
  52. },
  53. "devDependencies": {
  54. "rimraf": "~3.0.0",
  55. "typescript": "~3.9.2"
  56. },
  57. "publishConfig": {
  58. "access": "public"
  59. },
  60. "jupyterlab": {
  61. "extension": true,
  62. "schemaDir": "schema"
  63. }
  64. }