package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "5.0.0-alpha.4",
  4. "description": "Client APIs for the Jupyter services REST APIs",
  5. "keywords": [
  6. "jupyter",
  7. "notebook",
  8. "services"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/jupyterlab",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/jupyterlab"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "files": [
  21. "lib/**/*.js",
  22. "lib/*.js.map",
  23. "lib/**/*.d.ts",
  24. "lib/**/*.js.map",
  25. "lib/*.js",
  26. "lib/*.d.ts",
  27. "dist/*.js",
  28. "dist/**/*.js"
  29. ],
  30. "main": "lib/index.js",
  31. "browser": {
  32. "node-fetch": false,
  33. "ws": false
  34. },
  35. "typings": "lib/index.d.ts",
  36. "scripts": {
  37. "build": "tsc -b",
  38. "clean": "rimraf docs && rimraf lib",
  39. "docs": "typedoc src",
  40. "prepublishOnly": "jlpm run build && webpack",
  41. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/coreutils": "^4.0.0-alpha.4",
  45. "@jupyterlab/observables": "^3.0.0-alpha.4",
  46. "@lumino/algorithm": "^1.2.1",
  47. "@lumino/coreutils": "^1.4.0",
  48. "@lumino/disposable": "^1.3.2",
  49. "@lumino/polling": "^1.0.1",
  50. "@lumino/signaling": "^1.3.2",
  51. "node-fetch": "^2.6.0",
  52. "ws": "^7.2.0"
  53. },
  54. "devDependencies": {
  55. "@types/node": "^12.12.17",
  56. "@types/text-encoding": "^0.0.35",
  57. "rimraf": "~3.0.0",
  58. "text-encoding": "^0.7.0",
  59. "typedoc": "^0.15.4",
  60. "typescript": "~3.7.3",
  61. "webpack": "^4.41.2",
  62. "webpack-cli": "^3.3.10"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. }
  67. }