package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@jupyterlab/theme-dark-extension",
  3. "version": "2.1.0",
  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. "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,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  20. ],
  21. "sideEffects": true,
  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. "prepublishOnly": "npm run build",
  32. "watch": "tsc -b --watch"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/application": "^2.1.0",
  36. "@jupyterlab/apputils": "^2.1.0"
  37. },
  38. "devDependencies": {
  39. "rimraf": "~3.0.0",
  40. "typedoc": "^0.15.4",
  41. "typescript": "~3.7.3"
  42. },
  43. "publishConfig": {
  44. "access": "public"
  45. },
  46. "jupyterlab": {
  47. "extension": true,
  48. "themePath": "style/index.css"
  49. }
  50. }