forked from QuantStack/jupyterlab-drawio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jupyterlab-drawio",
"version": "0.7.0",
"description": "A JupyterLab extension for embedding drawio / mxgraph.",
"keywords": [
"extension",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/jupyterlab-drawio",
"bugs": {
"url": "https://github.com/QuantStack/jupyterlab-drawio/issues"
},
"license": "Apache-2.0",
"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 && rimraf tsconfig.tsbuildinfo",
"watch": "tsc -w",
"prepublish": "npm run clean && npm run build"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/docregistry": "^2.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/launcher": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~3.7.0",
"fs-extra": "^8.1.0",
"@lumino/messaging": "^1.1.0"
},
"jupyterlab": {
"extension": true
}
}