package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/documentsearch",
  3. "version": "2.1.0",
  4. "description": "Document Search",
  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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  18. ],
  19. "sideEffects": [
  20. "style/*"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib",
  31. "prepublishOnly": "npm run build",
  32. "watch": "tsc -w --listEmittedFiles"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/apputils": "^2.1.0",
  36. "@jupyterlab/cells": "^2.1.0",
  37. "@jupyterlab/codeeditor": "^2.1.0",
  38. "@jupyterlab/codemirror": "^2.1.0",
  39. "@jupyterlab/fileeditor": "^2.1.0",
  40. "@jupyterlab/notebook": "^2.1.0",
  41. "@jupyterlab/ui-components": "^2.1.0",
  42. "@lumino/algorithm": "^1.2.3",
  43. "@lumino/coreutils": "^1.4.2",
  44. "@lumino/disposable": "^1.3.5",
  45. "@lumino/polling": "^1.1.1",
  46. "@lumino/signaling": "^1.3.5",
  47. "@lumino/widgets": "^1.11.1",
  48. "codemirror": "~5.49.2",
  49. "react": "~16.9.0"
  50. },
  51. "devDependencies": {
  52. "rimraf": "~3.0.0",
  53. "typescript": "~3.7.3"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. }
  58. }