package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@jupyterlab/nbconvert-css",
  3. "version": "3.4.3",
  4. "description": "CSS bundle for the JupyterLab nbconvert template",
  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/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "style/index.js",
  20. "directories": {
  21. "style": "style/"
  22. },
  23. "files": [
  24. "style/*.js",
  25. "style/*.css"
  26. ],
  27. "scripts": {
  28. "build": "webpack --mode=production",
  29. "build:all": "npm run build",
  30. "clean": "rimraf style/",
  31. "watch": "webpack --watch"
  32. },
  33. "dependencies": {
  34. "@jupyterlab/application": "^3.4.3",
  35. "@jupyterlab/apputils": "^3.4.3",
  36. "@jupyterlab/cells": "^3.4.3",
  37. "@jupyterlab/codemirror": "^3.4.3",
  38. "@jupyterlab/notebook": "^3.4.3",
  39. "@jupyterlab/outputarea": "^3.4.3",
  40. "@jupyterlab/rendermime": "^3.4.3"
  41. },
  42. "devDependencies": {
  43. "css-loader": "^5.0.1",
  44. "file-loader": "~6.0.0",
  45. "mini-css-extract-plugin": "~1.3.2",
  46. "null-loader": "^4.0.0",
  47. "rimraf": "~3.0.0",
  48. "url-loader": "~4.1.0",
  49. "webpack": "^5.41.1",
  50. "webpack-cli": "^4.1.0"
  51. },
  52. "publishConfig": {
  53. "access": "public"
  54. }
  55. }