package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "@jupyterlab/builder",
  3. "version": "3.0.0-alpha.14",
  4. "description": "JupyterLab - Extension Builder",
  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. "files": [
  16. "metadata_schema.json",
  17. "lib/*.d.ts",
  18. "lib/*.js.map",
  19. "lib/*.js"
  20. ],
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "bin": {
  24. "build-labextension": "./lib/build-extension.js",
  25. "ensure-max-old-space": "./lib/ensure-max-old-space.js"
  26. },
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -w --listEmittedFiles"
  35. },
  36. "dependencies": {
  37. "@babel/core": "^7.10.2",
  38. "@babel/preset-env": "^7.10.2",
  39. "@jupyterlab/buildutils": "^3.0.0-alpha.14",
  40. "@lumino/algorithm": "^1.2.3",
  41. "@lumino/application": "^1.8.4",
  42. "@lumino/commands": "^1.10.1",
  43. "@lumino/coreutils": "^1.4.3",
  44. "@lumino/disposable": "^1.3.5",
  45. "@lumino/domutils": "^1.1.7",
  46. "@lumino/dragdrop": "^1.5.1",
  47. "@lumino/messaging": "^1.3.3",
  48. "@lumino/properties": "^1.1.6",
  49. "@lumino/signaling": "^1.3.5",
  50. "@lumino/virtualdom": "^1.6.1",
  51. "@lumino/widgets": "^1.11.1",
  52. "ajv": "^6.12.3",
  53. "babel-loader": "^8.0.6",
  54. "child_process": "~1.0.2",
  55. "commander": "~4.0.1",
  56. "css-loader": "~3.2.0",
  57. "duplicate-package-checker-webpack-plugin": "^3.0.0",
  58. "file-loader": "~5.0.2",
  59. "fs": "~0.0.1-security",
  60. "fs-extra": "^8.1.0",
  61. "glob": "~7.1.6",
  62. "mini-css-extract-plugin": "~0.10.0",
  63. "path": "~0.12.7",
  64. "raw-loader": "~4.0.0",
  65. "style-loader": "~1.0.1",
  66. "svg-url-loader": "~3.0.3",
  67. "terser-webpack-plugin": "^2.3.0",
  68. "to-string-loader": "^1.1.6",
  69. "url-loader": "~3.0.0",
  70. "webpack": "~5.0.0-beta.26",
  71. "webpack-cli": "^3.3.10",
  72. "webpack-merge": "^5.1.2",
  73. "which": "^2.0.2",
  74. "worker-loader": "^2.0.0"
  75. },
  76. "devDependencies": {
  77. "@types/fs-extra": "^8.0.1",
  78. "@types/glob": "^7.1.1",
  79. "@types/node": "^12.12.17",
  80. "@types/webpack": "^4.41.0",
  81. "@types/which": "^1.3.2",
  82. "rimraf": "~3.0.0",
  83. "typescript": "~4.0.2"
  84. },
  85. "publishConfig": {
  86. "access": "public"
  87. }
  88. }