package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "docs:init": "bash docs/build.sh",
  34. "prepublishOnly": "npm run build",
  35. "storybook": "start-storybook -p 9001 -c .storybook",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@blueprintjs/core": "^3.22.2",
  40. "@blueprintjs/select": "^3.11.2",
  41. "@jupyterlab/coreutils": "^4.1.0",
  42. "@lumino/coreutils": "^1.4.2",
  43. "@lumino/signaling": "^1.3.5",
  44. "@lumino/virtualdom": "^1.6.1",
  45. "@lumino/widgets": "^1.11.1",
  46. "react": "~16.9.0",
  47. "react-dom": "~16.9.0",
  48. "typestyle": "^2.0.4"
  49. },
  50. "devDependencies": {
  51. "@babel/core": "^7.5.0",
  52. "@babel/preset-env": "^7.7.6",
  53. "@storybook/addon-actions": "^5.2.5",
  54. "@storybook/react": "^5.2.5",
  55. "@types/react": "~16.9.16",
  56. "@types/webpack-env": "^1.14.1",
  57. "awesome-typescript-loader": "^5.2.1",
  58. "babel-loader": "^8.0.6",
  59. "react-docgen-typescript-loader": "^3.3.0",
  60. "rimraf": "~3.0.0",
  61. "svgo": "^1.3.2",
  62. "typedoc": "^0.15.4",
  63. "typescript": "~3.7.3"
  64. },
  65. "peerDependencies": {
  66. "react": "~16.9.0"
  67. },
  68. "publishConfig": {
  69. "access": "public"
  70. },
  71. "jupyterlab": {
  72. "extraStyles": {
  73. "blueprintjs": [
  74. "icons/lib/css/blueprint-icons.css",
  75. "core/lib/css/blueprint.css"
  76. ]
  77. }
  78. }
  79. }