package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "yili-dag",
  3. "version": "0.1.0",
  4. "description": "YLDAG extension.",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "",
  11. "license": "MIT",
  12. "author": "yili",
  13. "sideEffects": [
  14. "style/**/*.css",
  15. "style/index.js"
  16. ],
  17. "main": "lib/index.js",
  18. "types": "lib/index.d.ts",
  19. "style": "style/index.css",
  20. "directories": {
  21. "lib": "lib/"
  22. },
  23. "files": [
  24. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  25. "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  26. "schema/*.json"
  27. ],
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  31. "docs": "typedoc src",
  32. "watch": "tsc -b --watch"
  33. },
  34. "dependencies": {
  35. "@ant-design/icons": "~4.7.0",
  36. "@antv/x6": "latest",
  37. "@antv/x6-react-components": "^1.1.15",
  38. "@antv/x6-react-shape": "^1.6.1",
  39. "@jupyterlab/application": "^3.4.3",
  40. "@jupyterlab/apputils": "^3.4.3",
  41. "@jupyterlab/docregistry": "^3.4.3",
  42. "@jupyterlab/filebrowser": "^3.4.3",
  43. "@jupyterlab/mainmenu": "^3.4.3",
  44. "@jupyterlab/settingregistry": "^3.4.3",
  45. "@jupyterlab/ui-components": "^3.4.3",
  46. "@lumino/signaling": "^1.10.0",
  47. "@mui/material": "^5.8.1",
  48. "antd": "^4.22.8",
  49. "axios": "^0.27.2",
  50. "canvas": "^2.6.1",
  51. "codemirror": "~5.61.0",
  52. "react": "^17.0.1",
  53. "styled-components": "^5.3.5"
  54. },
  55. "devDependencies": {
  56. "@babel/core": "^7.10.2",
  57. "@babel/preset-env": "^7.10.2",
  58. "@jupyterlab/builder": "^3.4.3",
  59. "@jupyterlab/testutils": "^3.4.3",
  60. "@types/jest": "^26.0.10",
  61. "@typescript-eslint/eslint-plugin": "^4.8.1",
  62. "@typescript-eslint/parser": "^4.8.1",
  63. "eslint": "^7.14.0",
  64. "eslint-config-prettier": "^6.15.0",
  65. "eslint-plugin-prettier": "^3.1.4",
  66. "jest": "^26.4.2",
  67. "npm-run-all": "^4.1.5",
  68. "prettier": "~2.1.1",
  69. "rimraf": "~3.0.0",
  70. "stylelint": "^14.3.0",
  71. "stylelint-config-prettier": "^9.0.3",
  72. "stylelint-config-recommended": "^6.0.0",
  73. "stylelint-config-standard": "~24.0.0",
  74. "stylelint-prettier": "^2.0.0",
  75. "ts-jest": "^26.3.0",
  76. "typescript": "~4.1.3"
  77. },
  78. "publishConfig": {
  79. "access": "public"
  80. },
  81. "jupyterlab": {
  82. "extension": true,
  83. "schemaDir": "schema"
  84. },
  85. "styleModule": "style/index.js"
  86. }