package.json 1.3 KB

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