package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@jupyterlab/ui-components",
  3. "version": "2.1.0",
  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. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  18. ],
  19. "sideEffects": [
  20. "style/**/*"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib",
  31. "cleansvg": "svgo --config svgo.yaml",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "storybook": "start-storybook -p 9001 -c .storybook",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@blueprintjs/core": "^3.22.2",
  39. "@blueprintjs/select": "^3.11.2",
  40. "@jupyterlab/coreutils": "^4.1.0",
  41. "@lumino/coreutils": "^1.4.2",
  42. "@lumino/signaling": "^1.3.5",
  43. "@lumino/virtualdom": "^1.6.1",
  44. "@lumino/widgets": "^1.11.1",
  45. "react": "~16.9.0",
  46. "react-dom": "~16.9.0",
  47. "typestyle": "^2.0.4"
  48. },
  49. "devDependencies": {
  50. "@babel/core": "^7.5.0",
  51. "@babel/preset-env": "^7.7.6",
  52. "@storybook/addon-actions": "^5.2.5",
  53. "@storybook/react": "^5.2.5",
  54. "@types/react": "~16.9.16",
  55. "@types/webpack-env": "^1.14.1",
  56. "awesome-typescript-loader": "^5.2.1",
  57. "babel-loader": "^8.0.6",
  58. "react-docgen-typescript-loader": "^3.3.0",
  59. "rimraf": "~3.0.0",
  60. "svgo": "^1.3.2",
  61. "typedoc": "^0.15.4",
  62. "typescript": "~3.7.3"
  63. },
  64. "peerDependencies": {
  65. "react": "~16.9.0"
  66. },
  67. "publishConfig": {
  68. "access": "public"
  69. },
  70. "jupyterlab": {
  71. "extraStyles": {
  72. "blueprintjs": [
  73. "icons/lib/css/blueprint-icons.css",
  74. "core/lib/css/blueprint.css"
  75. ]
  76. }
  77. }
  78. }