package.json 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@elyra/code-snippet-extension",
  3. "version": "3.12.0-dev",
  4. "description": "JupyterLab extension - Reusable code snippets for your Notebook and Python Scripts",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/elyra-ai/elyra",
  11. "bugs": {
  12. "url": "https://github.com/elyra-ai/elyra/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/elyra-ai/elyra/"
  17. },
  18. "license": "Apache-2.0",
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "files": [
  23. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  24. "src/**/*.{ts,tsx}",
  25. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  26. ],
  27. "scripts": {
  28. "build": "jlpm run build:lib && jlpm run build:labextension:dev",
  29. "build:prod": "jlpm run build:lib && jlpm run build:labextension",
  30. "build:lib": "tsc",
  31. "build:labextension": "jupyter labextension build .",
  32. "build:labextension:dev": "jupyter labextension build --development True .",
  33. "clean": "rimraf lib tsconfig.tsbuildinfo ../../dist/labextensions/@elyra/code-snippet-extension",
  34. "lab:dev": "jupyter labextension develop --overwrite ../../dist/labextensions/@elyra/code-snippet-extension",
  35. "dist": "npm pack .",
  36. "prepare": "npm run build",
  37. "watch": "run-p watch:src watch:labextension",
  38. "watch:src": "tsc -w",
  39. "watch:labextension": "jupyter labextension watch .",
  40. "lab:install": "jupyter labextension install --no-build",
  41. "lab:uninstall": "jupyter labextension uninstall --no-build",
  42. "link:dev": "yarn link @jupyterlab/builder",
  43. "unlink:dev": "yarn unlink @jupyterlab/builder"
  44. },
  45. "dependencies": {
  46. "@elyra/metadata-common": "3.12.0-dev",
  47. "@elyra/services": "3.12.0-dev",
  48. "@elyra/ui-components": "3.12.0-dev",
  49. "@jupyterlab/application": "^3.4.0",
  50. "@jupyterlab/apputils": "^3.4.0",
  51. "@jupyterlab/builder": "^3.4.0",
  52. "@jupyterlab/cells": "^3.4.0",
  53. "@jupyterlab/codeeditor": "^3.4.0",
  54. "@jupyterlab/coreutils": "^5.4.0",
  55. "@jupyterlab/docmanager": "^3.4.0",
  56. "@jupyterlab/docregistry": "^3.4.0",
  57. "@jupyterlab/fileeditor": "^3.4.0",
  58. "@jupyterlab/mainmenu": "^3.4.0",
  59. "@jupyterlab/markdownviewer": "^3.4.0",
  60. "@jupyterlab/notebook": "^3.4.0",
  61. "@jupyterlab/ui-components": "^3.4.0",
  62. "@lumino/algorithm": "^1.3.3",
  63. "@lumino/coreutils": "^1.5.6",
  64. "@lumino/messaging": "^1.4.3",
  65. "@lumino/signaling": "^1.4.3",
  66. "@lumino/widgets": "^1.19.0",
  67. "react": "^17.0.1",
  68. "react-dom": "^17.0.1"
  69. },
  70. "devDependencies": {
  71. "@types/react": "^17.0.0",
  72. "@types/react-dom": "^17.0.0",
  73. "rimraf": "^3.0.2",
  74. "typescript": "~4.1.3"
  75. },
  76. "publishConfig": {
  77. "access": "public"
  78. },
  79. "jupyterlab": {
  80. "extension": true,
  81. "outputDir": "../../dist/labextensions/@elyra/code-snippet-extension"
  82. }
  83. }