-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.7 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.7 KB
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
{
"name": "vscode-h5web",
"displayName": "H5Web",
"publisher": "h5web",
"description": "Visualize HDF5 files in VS Code",
"version": "0.2.2",
"author": "European Synchrotron Radiation Facility",
"license": "MIT",
"homepage": "https://h5web.panosc.eu/",
"repository": {
"type": "git",
"url": "https://github.com/silx-kit/vscode-h5web.git"
},
"bugs": {
"url": "https://github.com/silx-kit/vscode-h5web/issues",
"email": "h5web@esrf.fr"
},
"icon": "assets/favicon192.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"categories": [
"Visualization"
],
"engines": {
"node": "24.x",
"pnpm": ">=10.26",
"vscode": ">=1.100.0"
},
"type": "module",
"contributes": {
"customEditors": [
{
"viewType": "h5web.viewer",
"displayName": "H5Web",
"selector": [
{
"filenamePattern": "*.{h5,hdf,hdf5,hf5,nx,nxs,nx5,nexus,cxi,nc,nc4,loom,jld2,h5ebsd,edaxh5,oh5,dream3d,geoh5,h5oina,h5ad}"
}
],
"priority": "default"
},
{
"viewType": "h5web.fallback-viewer",
"displayName": "H5Web (any extension)",
"selector": [
{
"filenamePattern": "*"
}
],
"priority": "option"
}
]
},
"main": "./out/main.js",
"scripts": {
"build": "pnpm build:app && pnpm build:extension --minify",
"build:app": "vite build",
"build:extension": "esbuild ./extension/index.ts --bundle --outfile=out/main.js --external:vscode --loader:.so=file --format=esm --platform=node",
"watch": "pnpm build:extension --sourcemap --watch",
"lint": "pnpm \"/^lint:/\"",
"lint:eslint": "eslint --max-warnings=0",
"lint:prettier": "prettier --cache --check .",
"vscode:prepublish": "pnpm build",
"pub": "pnpm --allow-build=@vscode/vsce-sign --allow-build=keytar dlx @vscode/vsce publish --no-dependencies",
"pub:ovsx": "pnpm --allow-build=@vscode/vsce-sign --allow-build=keytar dlx ovsx publish --no-dependencies"
},
"dependencies": {
"@h5web/app": "17.0.0",
"@h5web/h5wasm": "17.0.0",
"@react-hookz/web": "25.2.0",
"h5wasm-plugins": "0.3.0",
"modern-normalize": "3.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "6.0.0",
"suspend-react": "0.1.3"
},
"devDependencies": {
"@esrf/eslint-config": "2.3.0",
"@types/node": "^24.12.2",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/vscode": "~1.100.0",
"@types/vscode-webview": "~1.57.5",
"@vitejs/plugin-react": "6.0.1",
"esbuild": "0.28.0",
"eslint": "9.39.4",
"prettier": "3.8.3",
"typescript": "5.9.3",
"vite": "8.0.7"
}
}