-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.91 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
{
"name": "enscribe.dev",
"private": true,
"type": "module",
"version": "2.0.0",
"packageManager": "bun@1.3.14",
"workspaces": [
"packages/*",
"tests/*"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "bun run media:prepare && bun run fonts:prepare && bun run linebreak:build && astro dev",
"build": "bun run media:prepare && bun run fonts:prepare && bun run favicons:check && bun run linebreak:build && astro check && astro build --force && pagefind --site dist",
"preview": "astro preview",
"preview:cloudflare": "bun run build && wrangler dev",
"deploy:cloudflare": "bun run build && wrangler deploy",
"content:render": "bun run media:prepare:graphics && bun run fonts:prepare:graphics && bun scripts/render-content-assets.ts",
"astro": "astro",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "bun test tests/lib tests/linebreak/unit",
"test:site": "bun run --cwd tests/site test",
"linebreak:build": "bun run --cwd packages/linebreak build",
"linebreak:check": "bun run --cwd packages/linebreak check && bun run --cwd tests/linebreak check",
"favicons:check": "bun scripts/check-favicon-assets.ts",
"media:manifest": "bun scripts/generate-private-media-manifest.ts",
"media:sync": "bun run media:prepare && bun run content:render && bun run media:manifest && bun run media:upload",
"media:prepare": "bun scripts/manage-private-media.ts prepare",
"media:prepare:graphics": "bun scripts/manage-private-media.ts prepare-graphics",
"media:upload": "bun scripts/manage-private-media.ts upload",
"media:verify": "bun scripts/manage-private-media.ts verify",
"fonts:prepare": "bun scripts/manage-licensed-fonts.ts prepare",
"fonts:prepare:graphics": "bun scripts/manage-licensed-fonts.ts prepare-graphics",
"fonts:upload": "bun scripts/manage-licensed-fonts.ts upload",
"fonts:verify": "bun scripts/manage-licensed-fonts.ts verify"
},
"dependencies": {
"@astrojs/markdown-satteri": "^0.3.7",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@aws-sdk/client-s3": "^3.1094.0",
"@enscribe/linebreak": "workspace:*",
"@expressive-code/plugin-collapsible-sections": "^0.42.0",
"@expressive-code/plugin-line-numbers": "^0.42.0",
"astro": "^7.0.2",
"github-slugger": "^2.0.0",
"hast-util-select": "^6.0.4",
"hast-util-to-html": "^9.0.5",
"hastscript": "^9.0.1",
"maplibre-gl": "^6.3.0",
"satteri": "^0.10.5",
"satteri-expressive-code": "^0.1.24",
"sharp": "^0.34.5",
"temml": "^0.13.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@biomejs/biome": "^2.5.1",
"@types/bun": "^1.3.14",
"@types/hast": "3.0.5",
"@types/mdast": "4.0.4",
"mdast-util-to-hast": "^13.2.1",
"pagefind": "^1.5.2",
"typescript": "6.0.3",
"wrangler": "^4.114.0"
},
"overrides": {
"@types/hast": "3.0.5"
}
}