package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@elyra/code-viewer-extension",
  3. "version": "3.9.0-dev",
  4. "description": "JupyterLab extension - Display code without a file",
  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-viewer-extension",
  34. "lab:dev": "jupyter labextension develop --overwrite ../../dist/labextensions/@elyra/code-viewer-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. "@jupyterlab/application": "^3.4.0",
  47. "@jupyterlab/apputils": "^3.4.0",
  48. "@jupyterlab/builder": "^3.4.0",
  49. "@jupyterlab/codeeditor": "^3.4.0",
  50. "@jupyterlab/ui-components": "^3.4.0",
  51. "@lumino/algorithm": "^1.9.1",
  52. "@lumino/widgets": "^1.31.1"
  53. },
  54. "devDependencies": {
  55. "rimraf": "^3.0.2",
  56. "typescript": "~4.1.3"
  57. },
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "jupyterlab": {
  62. "extension": true,
  63. "outputDir": "../../dist/labextensions/@elyra/code-viewer-extension"
  64. }
  65. }