ipydrawio/package.json

48 wiersze
1.2 KiB
JSON

{
"name": "jupyterlab-drawio",
"version": "0.1.0",
"description": "A JupyterLab extension for embedding drawio / mxgraph.",
"keywords": [
"extension",
"jupyter",
"jupyterlab"
],
"homepage": "https://github.com/wolfv/jupyterlab-drawio",
"bugs": {
"url": "https://github.com/wolfv/jupyterlab-drawio/issues"
},
"license": "BSD-3-Clause",
"author": "Wolf Vollprecht",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,css}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wolfv/jupyterlab-drawio.git"
},
"scripts": {
"build": "node scripts/copyfiles.js && tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.15.0",
"@jupyterlab/filebrowser": "^0.15.0",
"@jupyterlab/mainmenu": "^0.4.0",
"@jupyterlab/launcher": "^0.15.0",
"@jupyterlab/apputils": "^0.15.0"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~2.6.0",
"fs-extra": "^0.30.0",
"@phosphor/messaging": "^1.1.0"
},
"jupyterlab": {
"extension": true
}
}