package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@jupyterlab/ui-components",
  3. "version": "0.0.1",
  4. "description": "JupyterLab - UI components written in React",
  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. "style/*.css"
  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 -b",
  28. "clean": "rimraf lib",
  29. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc -b --watch"
  32. },
  33. "dependencies": {
  34. "@blueprintjs/core": "^3.9.0",
  35. "@blueprintjs/icons": "^3.3.0",
  36. "@blueprintjs/select": "^3.3.0"
  37. },
  38. "devDependencies": {
  39. "@types/react": "~16.4.13",
  40. "react": "~16.4.2",
  41. "rimraf": "~2.6.2",
  42. "typedoc": "~0.12.0",
  43. "typescript": "~3.1.1"
  44. },
  45. "peerDependencies": {
  46. "react": "~16.4.2"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. }
  51. }