-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.41 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
{
"name": "family-tree",
"version": "0.1.0",
"description": "Convert GEDCOM files to lossless JSON for family trees. AI-ready, scalable, future-proof.",
"homepage": "https://github.com/sudostacks/family-tree",
"repository": "https://github.com/sudostacks/family-tree",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"convert": "node scripts/ged-to-json.js",
"scaffold": "node scripts/scaffold-documents.js",
"media-inventory": "node scripts/media-inventory.js",
"verify": "node scripts/verify-json.js",
"patch-living": "node scripts/patch-living.js",
"patch-errors": "node scripts/patch-errors.js",
"fs-match": "node scripts/fs-match.js",
"fetch-sources": "node scripts/fetch-context-sources.js --auto --resume",
"build-context": "node scripts/build-context.js --resume",
"build-context:reset": "node scripts/build-context.js --all --force",
"context:status": "node scripts/build-context.js --status",
"context:full": "npm run fetch-sources && npm run build-context",
"update-context": "node scripts/update-context.js",
"build-context:world": "node scripts/build-context.js --layer world",
"build-context:usa": "node scripts/build-context.js --layer USA",
"build-context:ohio": "node scripts/build-context.js --layer Ohio",
"build-context:indiana": "node scripts/build-context.js --layer Indiana",
"enrich-context": "node scripts/enrich-context.js",
"report": "node scripts/generate-report.js",
"report:filter": "node scripts/generate-report.js",
"report:note": "node -e \"console.log('NOTE: Replace report:mikesell/report:sulc with surnames from your own tree before publishing or sharing scripts.')\"",
"report:mikesell": "node scripts/generate-report.js --surname mikesell",
"report:sulc": "node scripts/generate-report.js --surname sulc",
"book": "node scripts/generate-book.js",
"book:person": "node scripts/generate-book.js",
"validate": "node scripts/validate.js",
"stats": "node scripts/stats.js"
},
"keywords": [
"gedcom",
"family-tree",
"genealogy",
"json",
"ancestry"
],
"author": "SudoStacks / Mike Sell",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.12.2",
"date-fns": "^2.30.0",
"docx": "^9.6.1",
"dotenv": "^16.6.1",
"parse-gedcom": "^2.0.1",
"read-gedcom": "^0.3.2",
"sharp": "^0.34.5"
}
}