-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
100 lines (100 loc) · 3.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
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
93
94
95
96
97
98
99
100
{
"name": "@agoose77/jupyterlab-markup",
"version": "2.1.0-alpha.1",
"description": "Extensible markdown rendering for JupyterLab, powered by markdown-it.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/agoose77/jupyterlab-markup",
"bugs": {
"url": "https://github.com/agoose77/jupyterlab-markup/issues"
},
"license": "BSD-3-Clause",
"author": "Angus Hollands",
"files": [
"{src,lib,style,schema}/**/*.{ts,tsx,eot,gif,html,jpg,js,map,json,png,svg,woff2,ttf,css}",
"LICENSE"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/agoose77/jupyterlab-markup.git"
},
"scripts": {
"bootstrap": "jlpm --ignore-optional && jlpm lint && jlpm build",
"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": "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_markup/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 .",
"lint": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"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": {
"@agoose77/markdown-it-mermaid": "0.1.0a0",
"@agoose77/markdown-it-svgbob": "0.1.0a0",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/codemirror": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0",
"@jupyterlab/rendermime": "^3.0.0",
"@jupyterlab/rendermime-interfaces": "^3.0.0",
"@jupyterlab/settingregistry": "^3.0.0",
"@jupyterlab/ui-components": "^3.0.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"markdown-it": "^12.2.3",
"markdown-it-anchor": "^8.6.4",
"markdown-it-deflist": "^2.0.3",
"markdown-it-dollarmath": "^0.4.2",
"markdown-it-footnote": "^3.0.2",
"markdown-it-task-lists": "^2.1.1",
"react": "^17.0.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@types/codemirror": "5.60.5",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "~5.14.0",
"@typescript-eslint/parser": "~5.14.0",
"eslint": "~8.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-react": "~7.29.4",
"json-schema-to-typescript": "^10.1.5",
"npm-run-all": "^4.1.5",
"prettier": "~2.6.0",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
},
"jupyterlab": {
"extension": "lib/plugin.js",
"discovery": {
"server": {
"base": {
"name": "jupyterlab_markup"
},
"managers": [
"pip"
]
}
},
"schemaDir": "schema",
"outputDir": "jupyterlab_markup/labextension",
"webpackConfig": "webpack.config.js"
}
}