package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@jupyterlab/theme-dark-extension",
  3. "version": "0.16.2",
  4. "description": "JupyterLab - Default Dark Theme",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js",
  15. "static/*.css",
  16. "static/*.ttf",
  17. "static/*.eot",
  18. "static/*.woff",
  19. "static/*.woff2"
  20. ],
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "directories": {
  24. "lib": "lib/"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/jupyterlab/jupyterlab.git"
  29. },
  30. "scripts": {
  31. "build": "run-p build:**",
  32. "build:typescript": "tsc",
  33. "build:webpack": "webpack",
  34. "clean": "rimraf lib",
  35. "prepublishOnly": "npm run build",
  36. "watch": "run-p watch:**",
  37. "watch:typescript": "tsc -w --listEmittedFiles",
  38. "watch:webpack": "webpack --watch"
  39. },
  40. "dependencies": {
  41. "@jupyterlab/application": "^0.16.2",
  42. "@jupyterlab/apputils": "^0.16.3",
  43. "font-awesome": "~4.7.0"
  44. },
  45. "devDependencies": {
  46. "css-loader": "~0.28.7",
  47. "mini-css-extract-plugin": "^0.4.0",
  48. "npm-run-all": "~4.1.1",
  49. "rimraf": "~2.6.2",
  50. "svg-url-loader": "~2.3.1",
  51. "svgo": "~1.0.4",
  52. "svgo-loader": "~2.1.0",
  53. "typescript": "~2.9.2",
  54. "url-loader": "~1.0.1",
  55. "webpack": "~4.12.0",
  56. "webpack-cli": "^3.0.3"
  57. },
  58. "jupyterlab": {
  59. "extension": true,
  60. "themeDir": "static"
  61. }
  62. }