-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
78 lines (78 loc) · 2.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jupyterlab-drawio",
"version": "0.9.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}",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/wolfv/jupyterlab-drawio.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "rimraf lib/drawio && mkdir -p lib/drawio && cp -R src/drawio lib && tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab-drawio/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.6",
"@jupyterlab/apputils": "^3.0.5",
"@jupyterlab/coreutils": "^5.0.3",
"@jupyterlab/docregistry": "^3.0.6",
"@jupyterlab/filebrowser": "^3.0.6",
"@jupyterlab/launcher": "^3.0.5",
"@jupyterlab/mainmenu": "^3.0.5",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.18.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.5",
"@lumino/messaging": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"typescript": "~3.9.3"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab-drawio/labextension"
},
"styleModule": "style/index.js"
}