package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "@jupyterlab/ui-components",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - UI components written in React",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "build:storybook": "build-storybook -c .storybook",
  32. "build:test": "tsc --build tsconfig.test.json",
  33. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  34. "cleansvg": "svgo --config svgo.yaml",
  35. "docs": "typedoc src",
  36. "docs:init": "bash docs/build.sh",
  37. "storybook": "start-storybook -p 9001 -c .storybook",
  38. "test": "jest",
  39. "test:cov": "jest --collect-coverage",
  40. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  41. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  42. "watch": "tsc -b --watch"
  43. },
  44. "dependencies": {
  45. "@blueprintjs/core": "^3.36.0",
  46. "@blueprintjs/select": "^3.15.0",
  47. "@jupyterlab/coreutils": "^5.4.3",
  48. "@jupyterlab/translation": "^3.4.3",
  49. "@lumino/algorithm": "^1.9.0",
  50. "@lumino/commands": "^1.19.0",
  51. "@lumino/coreutils": "^1.11.0",
  52. "@lumino/disposable": "^1.10.0",
  53. "@lumino/messaging": "^1.10.0",
  54. "@lumino/signaling": "^1.10.0",
  55. "@lumino/virtualdom": "^1.14.0",
  56. "@lumino/widgets": "^1.30.0",
  57. "@rjsf/core": "^3.1.0",
  58. "react": "^17.0.1",
  59. "react-dom": "^17.0.1",
  60. "typestyle": "^2.0.4"
  61. },
  62. "devDependencies": {
  63. "@babel/core": "^7.10.2",
  64. "@babel/preset-env": "^7.10.2",
  65. "@jupyterlab/testutils": "^3.4.3",
  66. "@storybook/addon-actions": "6.0.20",
  67. "@storybook/react": "6.0.20",
  68. "@types/jest": "^26.0.10",
  69. "@types/react": "^17.0.0",
  70. "@types/webpack-env": "^1.14.1",
  71. "babel-loader": "^8.0.6",
  72. "jest": "^26.4.2",
  73. "rimraf": "~3.0.0",
  74. "svgo": "^1.3.2",
  75. "ts-jest": "^26.3.0",
  76. "typedoc": "~0.21.2",
  77. "typescript": "~4.1.3"
  78. },
  79. "peerDependencies": {
  80. "react": "^17.0.1"
  81. },
  82. "publishConfig": {
  83. "access": "public"
  84. },
  85. "jupyterlab": {
  86. "extraStyles": {
  87. "blueprintjs": [
  88. "icons/lib/css/blueprint-icons.css",
  89. "core/lib/css/blueprint.css"
  90. ]
  91. }
  92. },
  93. "styleModule": "style/index.js"
  94. }