-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
110 lines (110 loc) · 3.3 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
{
"name": "jupyterlab-h5web",
"version": "12.3.0",
"description": "A JupyterLab extension to explore and visualize HDF5 file contents.",
"license": "MIT",
"homepage": "https://github.com/silx-kit/jupyterlab-h5web",
"keywords": [
"hdf5",
"nexus",
"h5web",
"h5grove",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"author": {
"name": "European Synchrotron Radiation Facility",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/silx-kit/jupyterlab-h5web.git"
},
"bugs": {
"url": "https://github.com/silx-kit/jupyterlab-h5web/issues"
},
"engines": {
"node": "20.x",
"jlpm": "*"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"sideEffects": [
"style/*.css"
],
"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}"
],
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True --source-map True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_h5web/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"deduplicate": "jlpm run yarn-deduplicate",
"lint": "run-p 'lint:*'",
"lint:eslint": "eslint \"**/*.{ts,tsx,js,jsx}\" --max-warnings=0",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@h5web/app": "13.0.0",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docmanager": "^4.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/filebrowser": "^4.0.0",
"@jupyterlab/launcher": "^4.0.0",
"@jupyterlab/rendermime": "^4.0.0",
"@jupyterlab/rendermime-interfaces": "^3.8.2",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@lumino/widgets": "^2.0.0",
"@react-hookz/web": "^24.0.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/node": "^20.14.9",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "8.26.0",
"eslint-config-galex": "4.3.1",
"eslint-plugin-import": "^2.27.5",
"mkdirp": "^1.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"typescript": "~5.1.3",
"yarn-deduplicate": "^6.0.0"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_h5web"
}
}
},
"extension": true,
"outputDir": "jupyterlab_h5web/labextension"
}
}