package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/nbconvert-css",
  3. "version": "3.0.0-rc.15",
  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. ],
  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",
  26. "lib/*.js.map",
  27. "lib/*.js",
  28. "style/*.css"
  29. ],
  30. "scripts": {
  31. "build": "webpack && rimraf style/index.js",
  32. "clean": "rimraf style/",
  33. "prepublishOnly": "npm run build",
  34. "watch": "webpack --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^3.0.0-rc.15",
  38. "@jupyterlab/apputils": "^3.0.0-rc.15",
  39. "@jupyterlab/cells": "^3.0.0-rc.15",
  40. "@jupyterlab/codemirror": "^3.0.0-rc.15",
  41. "@jupyterlab/notebook": "^3.0.0-rc.15",
  42. "@jupyterlab/outputarea": "^3.0.0-rc.15",
  43. "@jupyterlab/rendermime": "^3.0.0-rc.15"
  44. },
  45. "devDependencies": {
  46. "css-loader": "^5.0.1",
  47. "file-loader": "~6.0.0",
  48. "mini-css-extract-plugin": "~1.3.2",
  49. "null-loader": "^4.0.0",
  50. "rimraf": "~3.0.0",
  51. "url-loader": "~4.1.0",
  52. "webpack": "^5.3.1",
  53. "webpack-cli": "^4.1.0"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. }
  58. }