package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@elyra/python-editor-extension",
  3. "version": "3.12.0-dev",
  4. "description": "JupyterLab extension - Run python scripts using a kernel runtime",
  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/python-editor-extension",
  34. "lab:dev": "jupyter labextension develop --overwrite ../../dist/labextensions/@elyra/python-editor-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/script-editor": "3.12.0-dev",
  47. "@elyra/ui-components": "3.12.0-dev",
  48. "@jupyterlab/application": "^3.4.0",
  49. "@jupyterlab/apputils": "^3.4.0",
  50. "@jupyterlab/codeeditor": "^3.4.0",
  51. "@jupyterlab/docregistry": "^3.4.0",
  52. "@jupyterlab/filebrowser": "^3.4.0",
  53. "@jupyterlab/fileeditor": "^3.4.0",
  54. "@jupyterlab/launcher": "^3.4.0",
  55. "@jupyterlab/mainmenu": "^3.4.0",
  56. "@jupyterlab/settingregistry": "^3.4.0",
  57. "@jupyterlab/ui-components": "^3.4.0",
  58. "@lumino/coreutils": "^1.5.6"
  59. },
  60. "devDependencies": {
  61. "@jupyterlab/builder": "^3.4.0",
  62. "rimraf": "^3.0.2",
  63. "typescript": "~4.1.3"
  64. },
  65. "publishConfig": {
  66. "access": "public"
  67. },
  68. "jupyterlab": {
  69. "extension": true,
  70. "outputDir": "../../dist/labextensions/@elyra/python-editor-extension"
  71. }
  72. }