package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@elyra/metadata-common",
  3. "version": "3.9.0-dev",
  4. "description": "JupyterLab - Widgets for interacting with metadata",
  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. },
  35. "dependencies": {
  36. "@elyra/services": "3.9.0-dev",
  37. "@elyra/ui-components": "3.9.0-dev",
  38. "@jupyterlab/application": "^3.4.0",
  39. "@jupyterlab/apputils": "^3.4.0",
  40. "@jupyterlab/codeeditor": "^3.4.0",
  41. "@jupyterlab/ui-components": "^3.4.0",
  42. "@lumino/algorithm": "^1.3.3",
  43. "@lumino/messaging": "^1.4.3",
  44. "@lumino/widgets": "^1.19.0",
  45. "@material-ui/core": "^4.12.1",
  46. "react": "^17.0.1",
  47. "react-dom": "^17.0.1"
  48. },
  49. "devDependencies": {
  50. "@types/react": "^17.0.0",
  51. "@types/react-dom": "^17.0.0",
  52. "rimraf": "^3.0.2",
  53. "typescript": "~4.1.3"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. },
  58. "jupyterlab": {
  59. "extension": false,
  60. "outputDir": "../../dist/labextensions/@elyra/metadata-common"
  61. }
  62. }