package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@elyra/script-editor",
  3. "version": "3.12.0-dev",
  4. "description": "JupyterLab - Run python and R scripts using a kernel runtime",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab"
  8. ],
  9. "homepage": "https://github.com/elyra-ai/elyra",
  10. "bugs": {
  11. "url": "https://github.com/elyra-ai/elyra/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/elyra-ai/elyra/"
  16. },
  17. "license": "Apache-2.0",
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "files": [
  22. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  23. "src/**/*.{ts,tsx}",
  24. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  25. ],
  26. "scripts": {
  27. "build": "tsc",
  28. "clean": "rimraf lib",
  29. "dist": "npm pack .",
  30. "prepare": "npm run build",
  31. "watch": "tsc -w",
  32. "lab:install": "jupyter labextension link --no-build",
  33. "lab:uninstall": "jupyter labextension unlink --no-build",
  34. "test": "jest",
  35. "build:test": "tsc --build tsconfig.test.json"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/apputils": "^3.4.0",
  39. "@jupyterlab/codeeditor": "^3.4.0",
  40. "@jupyterlab/docregistry": "^3.4.0",
  41. "@jupyterlab/fileeditor": "^3.4.0",
  42. "@jupyterlab/logconsole": "^3.4.0",
  43. "@jupyterlab/outputarea": "^3.4.0",
  44. "@jupyterlab/rendermime": "^3.4.0",
  45. "@jupyterlab/services": "^6.4.0",
  46. "@jupyterlab/ui-components": "^3.4.0",
  47. "@lumino/signaling": "^1.4.3",
  48. "@lumino/widgets": "^1.19.0",
  49. "react": "^17.0.1",
  50. "react-dom": "^17.0.1"
  51. },
  52. "devDependencies": {
  53. "@jupyterlab/testutils": "^3.4.0",
  54. "@types/jest": "^23.3.11",
  55. "@types/react": "^17.0.0",
  56. "@types/react-dom": "^17.0.0",
  57. "jest": "^24.7.1",
  58. "jest-raw-loader": "^1.0.1",
  59. "rimraf": "^3.0.2",
  60. "ts-jest": "^24.0.2",
  61. "typescript": "~4.1.3"
  62. },
  63. "publishConfig": {
  64. "access": "public"
  65. },
  66. "jupyterlab": {
  67. "extension": false,
  68. "outputDir": "../../dist/labextensions/@elyra/script-editor"
  69. }
  70. }