-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.71 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
{
"name": "tested-telescope",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build && npx pagefind --site dist --output-subdir _pagefind",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"optimize:images": "node scripts/optimize-images.mjs",
"fix:epub-paths": "node scripts/fix-epub-paths.mjs",
"build:vivliostyle": "npm run build:vivliostyle:cli-ja && npm run build:vivliostyle:cli-en && npm run build:vivliostyle:vfm-ja && npm run build:vivliostyle:vfm-en && npm run build:vivliostyle:themes-ja && npm run build:vivliostyle:themes-en && npm run build:vivliostyle:viewer-ja && npm run build:vivliostyle:viewer-en && npm run build:vivliostyle:reference-ja && npm run build:vivliostyle:reference-en && npm run build:vivliostyle:cookbook-ja && npm run build:vivliostyle:cookbook-en",
"build:formats": "npm run build:vivliostyle && npm run fix:epub-paths",
"build:vivliostyle:cli-ja": "vivliostyle build -c vivliostyle.config-cli-ja.js",
"build:vivliostyle:cli-en": "vivliostyle build -c vivliostyle.config-cli-en.js",
"build:vivliostyle:vfm-ja": "vivliostyle build -c vivliostyle.config-vfm-ja.js",
"build:vivliostyle:vfm-en": "vivliostyle build -c vivliostyle.config-vfm-en.js",
"build:vivliostyle:themes-ja": "vivliostyle build -c vivliostyle.config-themes-ja.js",
"build:vivliostyle:themes-en": "vivliostyle build -c vivliostyle.config-themes-en.js",
"build:vivliostyle:viewer-ja": "vivliostyle build -c vivliostyle.config-viewer-ja.js",
"build:vivliostyle:viewer-en": "vivliostyle build -c vivliostyle.config-viewer-en.js",
"build:vivliostyle:reference-ja": "vivliostyle build -c vivliostyle.config-reference-ja.js",
"build:vivliostyle:reference-en": "vivliostyle build -c vivliostyle.config-reference-en.js",
"build:vivliostyle:cookbook-ja": "vivliostyle build -c vivliostyle.config-cookbook-ja.js",
"build:vivliostyle:cookbook-en": "vivliostyle build -c vivliostyle.config-cookbook-en.js",
"build:all": "npm run build && npm run build:formats && npm run copy:formats-to-dist",
"copy:formats-to-dist": "mkdir -p dist/downloads dist/publications && cp -R public/downloads/. dist/downloads/ && cp -R public/publications/. dist/publications/",
"regenerate:symbol-fonts": "python3 scripts/regenerate-symbol-fonts.py"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"@vivliostyle/vfm": "^2.7.0",
"astro": "^5.16.6",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@vivliostyle/cli": "^10.6.0",
"@vivliostyle/theme-techbook": "^2.0.1",
"pagefind": "^1.4.0",
"sharp": "^0.34.5",
"vitest": "^4.1.5"
}
}