package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@jupyterlab/mytest-extension",
  3. "version": "1.0.0",
  4. "description": "MyTest Extension",
  5. "homepage": "",
  6. "license": "MIT",
  7. "author": "yili",
  8. "sideEffects": [
  9. "style/**/*.css",
  10. "style/index.js"
  11. ],
  12. "main": "lib/index.js",
  13. "types": "lib/index.d.ts",
  14. "style": "style/index.css",
  15. "directories": {
  16. "lib": "lib/"
  17. },
  18. "files": [
  19. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  20. "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  21. "schema/*.json"
  22. ],
  23. "scripts": {
  24. "build": "tsc -b",
  25. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  26. "docs": "typedoc src",
  27. "watch": "tsc -b --watch"
  28. },
  29. "dependencies": {
  30. "@jupyterlab/application": "^3.4.3",
  31. "@jupyterlab/apputils": "^3.4.3",
  32. "@jupyterlab/ui-components": "^3.4.3",
  33. "@lumino/widgets": "^1.30.0"
  34. },
  35. "devDependencies": {
  36. "rimraf": "~3.0.0",
  37. "typedoc": "~0.21.2",
  38. "typescript": "~4.1.3"
  39. },
  40. "publishConfig": {
  41. "access": "public"
  42. },
  43. "jupyterlab": {
  44. "extension": true
  45. },
  46. "styleModule": "style/index.js"
  47. }