-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 2.89 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "jupyter-scribe",
"version": "0.1.0",
"description": "An extension that transforms Markdown cells into rich text-editing cells, powered by ProseMirror.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupytercalpoly/jupyterlab-richtext-mode",
"bugs": {
"url": "https://github.com/jupytercalpoly/jupyterlab-richtext-mode/issues"
},
"license": "BSD-3-Clause",
"author": "Derek Lam",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"static/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupytercalpoly/jupyterlab-richtext-mode.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/cells": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/mathjax2": "^2.0.0",
"@jupyterlab/notebook": "^2.0.0",
"@types/codemirror": "0.0.76",
"@types/fuzzyset": "^1.0.2",
"@types/prosemirror-commands": "^1.0.1",
"@types/prosemirror-history": "^1.0.1",
"@types/prosemirror-inputrules": "^1.0.2",
"@types/prosemirror-keymap": "^1.0.1",
"@types/prosemirror-markdown": "^1.0.2",
"@types/prosemirror-schema-basic": "^1.0.1",
"@types/prosemirror-schema-list": "^1.0.1",
"@types/prosemirror-state": "^1.2.3",
"@types/prosemirror-view": "^1.11.2",
"@types/react": "~16.9.11",
"@types/react-dom": "~16.9.4",
"codemirror": "5.47.0",
"fuzzyset": "0.0.4",
"markdown-it": "^9.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-mathjax": "^2.0.0",
"material-design-icons-iconfont": "^5.0.1",
"mathjax": "^2.7.5",
"mathjax-node": "^2.1.1",
"prosemirror-commands": "^1.1.4",
"prosemirror-example-setup": "^1.0.1",
"prosemirror-history": "^1.0.4",
"prosemirror-inputrules": "^1.0.4",
"prosemirror-keymap": "^1.0.1",
"prosemirror-markdown": "^1.3.1",
"prosemirror-schema-basic": "^1.0.1",
"prosemirror-schema-list": "^1.1.2",
"prosemirror-state": "^1.2.3",
"prosemirror-transform": "^1.1.4",
"prosemirror-view": "^1.12.2",
"@lumino/widgets": "^1.9.4",
"@lumino/commands": "^1.10.3",
"@lumino/coreutils": "^1.3.1",
"@lumino/algorithm": "^1.2.0",
"@lumino/signaling": "^1.3.6",
"@lumino/disposable": "^1.2.0",
"react": "~16.9.0",
"react-dom": "~16.9.0"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~3.7.3",
"@types/node": "^12.6.8"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true
}
}