package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@jupyterlab/translation-extension",
  3. "version": "3.1.0-beta.0",
  4. "description": "JupyterLab - Translation services",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  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.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "files": [
  28. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  29. "schema/**/*.{json,}",
  30. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  31. "style/index.js"
  32. ],
  33. "scripts": {
  34. "build": "tsc",
  35. "clean": "rimraf lib tsconfig.tsbuildinfo",
  36. "eslint": "eslint . --ext .ts,.tsx --fix",
  37. "eslint:check": "eslint . --ext .ts,.tsx",
  38. "prepare": "jlpm run clean && jlpm run build",
  39. "prepublishOnly": "npm run build",
  40. "watch": "tsc -w"
  41. },
  42. "dependencies": {
  43. "@jupyterlab/application": "^3.1.0-beta.0",
  44. "@jupyterlab/apputils": "^3.1.0-beta.0",
  45. "@jupyterlab/mainmenu": "^3.1.0-beta.0",
  46. "@jupyterlab/settingregistry": "^3.1.0-beta.0",
  47. "@jupyterlab/translation": "^3.1.0-beta.0"
  48. },
  49. "devDependencies": {
  50. "rimraf": "~3.0.0",
  51. "typescript": "~4.1.3"
  52. },
  53. "publishConfig": {
  54. "access": "public"
  55. },
  56. "jupyterlab": {
  57. "extension": true,
  58. "schemaDir": "schema"
  59. },
  60. "styleModule": "style/index.js"
  61. }