forked from jupyterlab/jupyter-renderers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "@jupyterlab/katex-extension",
"version": "1.0.0",
"description": "KaTeX math renderer for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"katex"
],
"homepage": "https://github.com/jupyterlab/jupyter-renderers",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-renderers/issues"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"files": [
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-renderers.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepack": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/rendermime": "^1.0.0",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"katex": "^0.10.0"
},
"devDependencies": {
"@types/katex": "^0.10.0",
"rimraf": "~2.6.2",
"typescript": "~3.5.1"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}