package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@elyra/ui-components",
  3. "version": "3.9.0-dev",
  4. "description": "JupyterLab - UI components for use in elyra",
  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. "@jupyterlab/apputils": "^3.4.0",
  37. "@jupyterlab/ui-components": "^3.4.0",
  38. "@material-ui/core": "^4.12.1",
  39. "@material-ui/icons": "^4.2.1",
  40. "@material-ui/lab": "^4.0.0-alpha.18",
  41. "react": "^17.0.1",
  42. "react-dom": "^17.0.1",
  43. "react-json-tree": "^0.11.2"
  44. },
  45. "devDependencies": {
  46. "@types/react-json-tree": "^0.6.11",
  47. "rimraf": "^3.0.2",
  48. "typescript": "~4.1.3"
  49. },
  50. "publishConfig": {
  51. "access": "public"
  52. },
  53. "jupyterlab": {
  54. "extension": false,
  55. "outputDir": "../../dist/labextensions/@elyra/ui-components"
  56. }
  57. }