-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.47 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
{
"name": "vscode-h5web",
"displayName": "H5Web",
"publisher": "h5web",
"description": "Visualize HDF5 files in VS Code",
"version": "0.1.7",
"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": "[email protected]"
},
"icon": "assets/favicon192.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"categories": [
"Visualization"
],
"engines": {
"node": "20.x",
"pnpm": "9.x",
"vscode": ">=1.86.0"
},
"contributes": {
"customEditors": [
{
"viewType": "h5web.viewer",
"displayName": "H5Web",
"selector": [
{
"filenamePattern": "*.{h5,hdf,hdf5,nx,nxs,nx5,nexus,cxi,nc,nc4,loom,jld2}"
}
],
"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 ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --loader:.so=file --format=cjs --platform=node",
"watch": "pnpm build:extension --sourcemap --watch",
"prettier": "prettier . --cache --check",
"vscode:prepublish": "pnpm build",
"pub": "pnpm dlx @vscode/vsce publish --no-dependencies"
},
"dependencies": {
"@h5web/app": "13.0.0",
"@h5web/h5wasm": "13.0.0",
"@react-hookz/web": "15.0.1",
"axios": "0.27.2",
"h5wasm-plugins": "0.0.3",
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"suspend-react": "0.0.8"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@types/vscode": "~1.86.0",
"@types/vscode-webview": "~1.57.2",
"@vitejs/plugin-react": "1.3.2",
"esbuild": "0.20.0",
"prettier": "2.8.7",
"typescript": "5.2.2",
"vite": "2.9.13"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react-aria-menubutton>react": "18.x"
}
}
}
}