package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@jupyterlab/fileeditor-extension",
  3. "version": "0.14.1",
  4. "description": "JupyterLab - Editor Widget Extension",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js",
  15. "schema/*.json"
  16. ],
  17. "main": "lib/index.js",
  18. "types": "lib/index.d.ts",
  19. "directories": {
  20. "lib": "lib/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/jupyterlab/jupyterlab.git"
  25. },
  26. "scripts": {
  27. "build": "tsc",
  28. "clean": "rimraf lib",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -w"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/application": "^0.14.1",
  34. "@jupyterlab/apputils": "^0.14.1",
  35. "@jupyterlab/codeeditor": "^0.14.1",
  36. "@jupyterlab/console": "^0.14.1",
  37. "@jupyterlab/coreutils": "^1.0.1",
  38. "@jupyterlab/filebrowser": "^0.14.1",
  39. "@jupyterlab/fileeditor": "^0.14.1",
  40. "@jupyterlab/launcher": "^0.14.1",
  41. "@jupyterlab/mainmenu": "^0.3.1",
  42. "@phosphor/coreutils": "^1.3.0",
  43. "@phosphor/widgets": "^1.5.0"
  44. },
  45. "devDependencies": {
  46. "rimraf": "~2.6.2",
  47. "typescript": "~2.6.2"
  48. },
  49. "jupyterlab": {
  50. "extension": true,
  51. "schemaDir": "schema"
  52. }
  53. }