package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@jupyterlab/theme-dark-extension",
  3. "version": "3.0.0-rc.15",
  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. "sideEffects": true,
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "style": "style/index.css",
  19. "directories": {
  20. "lib": "lib/"
  21. },
  22. "files": [
  23. "lib/*.d.ts",
  24. "lib/*.js.map",
  25. "lib/*.js",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -b --watch"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^3.0.0-rc.15",
  37. "@jupyterlab/apputils": "^3.0.0-rc.15",
  38. "@jupyterlab/translation": "^3.0.0-rc.15"
  39. },
  40. "devDependencies": {
  41. "rimraf": "~3.0.0",
  42. "typedoc": "~0.20.0-beta.27",
  43. "typescript": "~4.1.3"
  44. },
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "jupyterlab": {
  49. "extension": true,
  50. "themePath": "style/index.css"
  51. },
  52. "styleModule": "style/index.js"
  53. }