package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@jupyterlab/tooltip",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Tooltip Widget",
  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/apputils": "^2.1.0",
  39. "@jupyterlab/codeeditor": "^2.1.0",
  40. "@jupyterlab/rendermime": "^2.1.0",
  41. "@jupyterlab/services": "^5.1.0",
  42. "@lumino/coreutils": "^1.4.2",
  43. "@lumino/messaging": "^1.3.3",
  44. "@lumino/widgets": "^1.11.1"
  45. },
  46. "devDependencies": {
  47. "rimraf": "~3.0.0",
  48. "typedoc": "^0.15.4",
  49. "typescript": "~3.7.3"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. }
  54. }