-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 992 Bytes
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
{
"name": "georgemain.com",
"private": true,
"type": "module",
"version": "0.1.0",
"description": "Static site for georgemain.com",
"scripts": {
"build": "node scripts/build.mjs",
"serve": "node scripts/serve.mjs",
"dev": "node scripts/dev.mjs",
"media": "node scripts/process-staging.mjs",
"foia:inspect": "node scripts/ingest-foia.mjs inspect",
"foia:publish": "node scripts/ingest-foia.mjs publish",
"check:pii": "node scripts/check-pii.mjs",
"check:images": "node scripts/check-images.mjs",
"check:links": "node scripts/check-links.mjs",
"setup": "git config core.hooksPath .githooks && echo 'git hooks installed (run once per clone)'",
"check:pii:all": "node scripts/check-pii.mjs --all"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"eta": "^3.5.0",
"exifr": "^7.1.3",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"marked": "^14.1.3",
"sharp": "^0.33.5"
}
}