package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@elyra/ui-components",
  3. "version": "3.12.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. "@rjsf/core": "^3.1.0",
  42. "react": "^17.0.1",
  43. "react-dom": "^17.0.1",
  44. "react-json-tree": "^0.11.2"
  45. },
  46. "devDependencies": {
  47. "@types/react-json-tree": "^0.6.11",
  48. "rimraf": "^3.0.2",
  49. "typescript": "~4.1.3"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "jupyterlab": {
  55. "extension": false,
  56. "outputDir": "../../dist/labextensions/@elyra/ui-components"
  57. }
  58. }