-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "jupyterlab-datalogs",
"private": true,
"version": "0.6.0",
"description": "JupyterLab extension for DataLogs.",
"contributors": [
{
"name": "Alex Hadley",
"email": "contact@alexhadley.net"
}
],
"license": "BSD-3-Clause",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/PainterQubits/jupyterlab-datalogs",
"repository": "github:PainterQubits/jupyterlab-datalogs",
"main": "lib/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "labextension",
"schemaDir": "schema",
"webpackConfig": "webpack.config.js"
},
"scripts": {
"dev": "run-s build symlink:labextension && run-p watch:lib watch:labextension jupyterlab",
"build": "run-s clean copy-icons build:lib build:labextension",
"clean": "rimraf lib tsconfig.tsbuildinfo 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",
"copy-icons": "mkdir -p lib/icons && cp src/icons/*.svg* lib/icons"
},
"packageManager": "yarn@3.5.0",
"dependencies": {
"@jupyterlab/application": "^4.2.5",
"@jupyterlab/filebrowser": "^4.2.5",
"@jupyterlab/launcher": "^4.2.5",
"@jupyterlab/notebook": "^4.2.5",
"@jupyterlab/ui-components": "^4.2.5"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.57.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"
}
}