-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "insight-journal",
"version": "3.0.0",
"description": "The Insight Journal",
"private": true,
"author": "Fideus Labs LLC",
"license": "Apache-2.0",
"pnpm": {
"overrides": {
"katex": "^0.16.27"
},
"onlyBuiltDependencies": [
"cbor-extract",
"esbuild",
"protobufjs",
"sharp"
]
},
"dependencies": {
"@awesome-myst/myst-astro-collections": "^2.0.2",
"@awesome-myst/myst-awesome": "^0.0.7",
"@awesome-myst/myst-zod": "^0.6.1",
"@awesome.me/webawesome": "3.0.0-beta.6",
"@niivue/dicom-loader": "^1.0.0",
"@niivue/itkwasm-loader": "^1.0.2",
"@niivue/niivue": "^0.64.0",
"astro": "^5.15.9",
"client-zip": "^2.5.0",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"p-limit": "^7.1.1",
"scienceicons": "^0.0.13",
"typescript": "^5.9.3"
},
"scripts": {
"dev": "pnpm run setup-assets && astro dev",
"fuse-post-process": "node scripts/fuse-post-process.mjs",
"build": "pnpm run setup-assets && astro build",
"build:full": "pnpm run prefetch && pnpm run build",
"preview": "astro preview",
"setup-assets": "node scripts/setup-assets.mjs",
"download-pdfs": "node scripts/download-pdfs.mjs",
"prefetch": "node scripts/prefetch-articles.mjs",
"prefetch:force": "node scripts/prefetch-articles.mjs --force",
"prefetch:verbose": "node scripts/prefetch-articles.mjs --verbose"
},
"devDependencies": {
"@types/node": "^24.3.0",
"playwright": "^1.56.1",
"sharp": "^0.34.4",
"yaml": "^2.8.1"
}
}