package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/nbconvert-css",
  3. "version": "2.1.0",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/*.css"
  20. ],
  21. "sideEffects": [
  22. "style/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  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/apputils": "^2.1.0",
  38. "@jupyterlab/cells": "^2.1.0",
  39. "@jupyterlab/codemirror": "^2.1.0",
  40. "@jupyterlab/notebook": "^2.1.0",
  41. "@jupyterlab/outputarea": "^2.1.0",
  42. "@jupyterlab/rendermime": "^2.1.0"
  43. },
  44. "devDependencies": {
  45. "css-loader": "~3.2.0",
  46. "file-loader": "~5.0.2",
  47. "mini-css-extract-plugin": "~0.8.0",
  48. "null-loader": "^3.0.0",
  49. "rimraf": "~3.0.0",
  50. "typescript": "~3.7.3",
  51. "url-loader": "~3.0.0",
  52. "webpack": "^4.41.2",
  53. "webpack-cli": "^3.3.10"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. }
  58. }