-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.63 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.63 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
95
96
97
98
{
"name": "@h5web/app",
"version": "17.0.0-beta.5",
"description": "H5Web app and providers",
"author": "European Synchrotron Radiation Facility",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silx-kit/h5web"
},
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
"./global-styles.css": "./src/global-styles.css",
".": "./src/index.ts"
},
"publishConfig": {
"exports": {
"./styles.css": "./dist/styles.css",
".": "./dist/index.js"
}
},
"scripts": {
"build": "vite build && pnpm \"/^build:/\"",
"build:css": "vite build --config vite.styles.config.js && concat dist/temp/styles.css dist/app.css -o dist/styles.css && rimraf dist/app.css dist/temp",
"build:dts": "tsc --build tsconfig.build.json && rollup -c",
"lint:eslint": "eslint --max-warnings=0",
"lint:tsc": "tsc",
"analyze": "pnpm dlx source-map-explorer dist/index.js --no-border-checks",
"prepack": "dot-json package.json -d type",
"sync-version": "dot-json ../../package.json version | xargs dot-json package.json version"
},
"peerDependencies": {
"@types/react": "18.x",
"@types/react-dom": "18.x",
"axios": ">=1",
"react": ">=18",
"react-dom": ">=18",
"typescript": ">=4.5"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"axios": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"@h5web/lib": "workspace:*",
"@react-hookz/web": "25.1.1",
"@react-three/fiber": "8.18.0",
"@types/d3-format": "~3.0.4",
"@types/ndarray": "1.0.14",
"d3-format": "3.1.2",
"ndarray": "1.0.19",
"ndarray-ops": "1.2.2",
"react-error-boundary": "6.1.1",
"react-icons": "5.4.0",
"react-resizable-panels": "4.7.1",
"three": "0.182.0",
"zustand": "5.0.11"
},
"devDependencies": {
"@esrf/eslint-config": "2.2.2",
"@h5web/shared": "workspace:*",
"@rollup/plugin-alias": "6.0.0",
"@types/node": "^24.10.13",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "4.2.3",
"@vitest/browser-playwright": "4.0.18",
"axios": "1.13.5",
"concat": "1.0.3",
"dot-json": "1.3.0",
"eslint": "9.39.2",
"jsdom": "28.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.1.3",
"rollup": "4.57.1",
"rollup-plugin-dts": "6.3.0",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-css-modules": "1.12.0",
"vitest": "4.0.18",
"vitest-browser-react": "2.0.5"
}
}