package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@jupyterlab/documentsearch",
  3. "version": "3.0.0-rc.15",
  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. "sideEffects": [
  16. "style/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -w --listEmittedFiles"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/apputils": "^3.0.0-rc.15",
  37. "@jupyterlab/cells": "^3.0.0-rc.15",
  38. "@jupyterlab/codeeditor": "^3.0.0-rc.15",
  39. "@jupyterlab/codemirror": "^3.0.0-rc.15",
  40. "@jupyterlab/fileeditor": "^3.0.0-rc.15",
  41. "@jupyterlab/notebook": "^3.0.0-rc.15",
  42. "@jupyterlab/translation": "^3.0.0-rc.15",
  43. "@jupyterlab/ui-components": "^3.0.0-rc.15",
  44. "@lumino/algorithm": "^1.3.3",
  45. "@lumino/coreutils": "^1.5.3",
  46. "@lumino/disposable": "^1.4.3",
  47. "@lumino/polling": "^1.3.3",
  48. "@lumino/signaling": "^1.4.3",
  49. "@lumino/widgets": "^1.16.1",
  50. "codemirror": "~5.57.0",
  51. "react": "^17.0.1"
  52. },
  53. "devDependencies": {
  54. "rimraf": "~3.0.0",
  55. "typescript": "~4.1.3"
  56. },
  57. "publishConfig": {
  58. "access": "public"
  59. },
  60. "styleModule": "style/index.js"
  61. }