-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 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
{
"name": "jupyterlab-open-warning",
"version": "0.2.0",
"description": "JupyterLab extension to display a warning dialog when opening a file that another user has open.",
"contributors": [
{
"name": "Alex Hadley",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/PainterQubits/jupyterlab-open-warning",
"repository": "github:PainterQubits/jupyterlab-open-warning",
"main": "lib/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "labextension",
"webpackConfig": "webpack.config.js"
},
"scripts": {
"dev": "run-s build symlink:labextension && run-p watch:lib watch:labextension jupyterlab",
"build": "run-s clean download-licenses build:lib build:labextension",
"clean": "rimraf tsconfig.tsbuildinfo lib labextension",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"build:lib": "tsc",
"watch:lib": "tsc -w",
"build:labextension": "jupyter labextension build .",
"symlink:labextension": "jupyter labextension develop --overwrite .",
"watch:labextension": "jupyter labextension watch .",
"jupyterlab": "hatch run jupyter lab --YDocExtension.disable_rtc True",
"download-licenses": "curl https://raw.githubusercontent.com/jupyterlab/jupyter-collaboration/main/LICENSE -o node_modules/@jupyter/collaboration/LICENSE-downloaded"
},
"packageManager": "[email protected]",
"dependencies": {
"@jupyter/collaboration": "^2.1.2",
"@jupyterlab/application": "^4.2.5",
"@jupyterlab/apputils": "^4.3.5",
"@jupyterlab/docmanager": "^4.2.5",
"@jupyterlab/services": "^7.2.5",
"y-protocols": "^1.0.6"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}