forked from jupyterlab/jupyterlab-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "@jupyterlab/latex",
"version": "0.2.0",
"description": "JupyterLab extension for running LaTeX",
"author": "M Pacer & Ian Rose",
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"style/*.*"
],
"directories": {
"lib": "lib/"
},
"keywords": [
"jupyter",
"jupyterlab",
"latex"
],
"jupyterlab": {
"extension": "lib/index.js"
},
"scripts": {
"build": "tsc",
"build:test": "cd test && ./build-tests.sh",
"test": "cd test && ./run-tests.sh",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.15.0",
"@jupyterlab/apputils": "^0.15.0",
"@jupyterlab/coreutils": "^1.0.2",
"@jupyterlab/docmanager": "^0.15.0",
"@jupyterlab/docregistry": "^0.15.0",
"@jupyterlab/fileeditor": "^0.15.0",
"@jupyterlab/services": "^1.0.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"pdfjs-dist": "^2.0.104",
"react": "~16.0.0",
"react-dom": "~16.0.0"
},
"devDependencies": {
"@types/pdfjs-dist": "^0.1.0",
"@types/react": "~16.0.19",
"@types/react-dom": "~16.0.2",
"rimraf": "^2.5.2",
"typescript": "~2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mpacer/jupyterlab-latex.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mpacer/jupyterlab-latex/issues"
},
"homepage": "https://github.com/mpacer/jupyterlab-latex"
}