package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@jupyterlab/pdf-extension",
  3. "version": "3.2.8",
  4. "description": "JupyterLab - PDF Viewer",
  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": [
  16. "style/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "style/*.css",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/rendermime-interfaces": "^3.2.8",
  40. "@lumino/coreutils": "^1.5.3",
  41. "@lumino/disposable": "^1.4.3",
  42. "@lumino/widgets": "^1.19.0"
  43. },
  44. "devDependencies": {
  45. "rimraf": "~3.0.0",
  46. "typedoc": "~0.21.2",
  47. "typescript": "~4.1.3"
  48. },
  49. "publishConfig": {
  50. "access": "public"
  51. },
  52. "jupyterlab": {
  53. "mimeExtension": true
  54. },
  55. "styleModule": "style/index.js"
  56. }