package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@jupyterlab/attachments",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Notebook Cell Attachments",
  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"
  20. ],
  21. "sideEffects": [
  22. "style/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/nbformat": "^2.1.0",
  39. "@jupyterlab/observables": "^3.1.0",
  40. "@jupyterlab/rendermime": "^2.1.0",
  41. "@jupyterlab/rendermime-interfaces": "^2.1.0",
  42. "@lumino/disposable": "^1.3.5",
  43. "@lumino/signaling": "^1.3.5"
  44. },
  45. "devDependencies": {
  46. "rimraf": "~3.0.0",
  47. "typedoc": "^0.15.4",
  48. "typescript": "~3.7.3"
  49. },
  50. "publishConfig": {
  51. "access": "public"
  52. }
  53. }