forked from jupyterlab/jupyterlab-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.37 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@jupyterlab/latex",
"version": "3.1.0",
"description": "JupyterLab extension for running LaTeX",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"latex"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-latex",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-latex/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-latex.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Jupyter Development Team",
"email": "[email protected]"
},
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*",
"style/index.js"
],
"directories": {
"lib": "lib/"
},
"main": "lib/index.js",
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab-latex/labextension",
"clean:all": "jlpm clean:lib && jlpm clean:labextension",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"install:extension": "jlpm build",
"watch": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/codeeditor": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
"@jupyterlab/docmanager": "^3.0.0",
"@jupyterlab/docregistry": "^3.0.0",
"@jupyterlab/filebrowser": "^3.0.0",
"@jupyterlab/fileeditor": "^3.0.0",
"@jupyterlab/launcher": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0",
"@jupyterlab/services": "^6.0.0",
"@jupyterlab/settingregistry": "^3.0.0",
"@jupyterlab/statedb": "^3.0.0",
"@jupyterlab/ui-components": "^3.0.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/domutils": "^1.2.3",
"@lumino/messaging": "^1.4.3",
"@lumino/widgets": "^1.16.1",
"pdfjs-dist": "2.0.943",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0-rc.13",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@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",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~4.1.3"
},
"resolutions": {
"@types/react": "~16.4.13"
},
"jupyterlab": {
"extension": "lib/index.js",
"schemaDir": "schema",
"sharedPackages": {
"pdfjs-dist": {
"bundled": true,
"singleton": true,
"strictVersion": true
}
},
"outputDir": "jupyterlab_latex/labextension"
},
"styleModule": "style/index.js"
}