-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.82 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
{
"name": "content",
"version": "1.0.0",
"description": "Rooted Layers content repo: publication packages, workflow contracts, reviewable runs, archive/mirror automation, and governed content-agent surfaces.",
"main": "index.js",
"scripts": {
"sync:substack": ".venv/bin/python scripts/sync_substack_archive.py",
"sync:editorial-atlas": ".venv/bin/python scripts/generate_editorial_atlas.py",
"build:mirror": "rm -rf publication_strategy_and_archive/mirror/_site && eleventy",
"dev:mirror": "eleventy --serve",
"check:mirror": "npm run build:mirror && .venv/bin/python scripts/check_mirror.py && .venv/bin/python scripts/e2e_mirror_smoke.py",
"check:workflow-model": ".venv/bin/python scripts/check_workflow_model.py",
"check:workflow-yaml": ".venv/bin/python scripts/check_workflow_yaml_contracts.py",
"check:experimental-workflows": ".venv/bin/python scripts/check_experimental_workflows.py",
"check:validation-surface": ".venv/bin/python scripts/check_validation_surface_docs.py",
"check:reviewable-runs": ".venv/bin/python scripts/check_reviewable_run_logs.py",
"check:essay-prewrite": ".venv/bin/python scripts/check_essay_iteration_packet.py --phase prewrite",
"check:essay-iteration": ".venv/bin/python scripts/check_essay_iteration_packet.py",
"check:package-lifecycle": ".venv/bin/python scripts/check_package_lifecycle.py",
"check:notebooklm-registry": ".venv/bin/python scripts/check_notebooklm_registry.py",
"check:public-hygiene": ".venv/bin/python scripts/check_public_hygiene.py",
"check:alphaxiv-discussions": ".venv/bin/python scripts/check_alphaxiv_discussions.py",
"check": "npm run check:public-hygiene && npm run check:workflow-yaml && npm run check:experimental-workflows && npm run check:validation-surface && npm run check:workflow-model && npm run check:reviewable-runs && npm run check:repo-links && npm run check:alphaxiv-discussions",
"content-agent": "./content-agent",
"agent:status": "./content-agent status",
"agent:next": "./content-agent next",
"agent:validate": "./content-agent validate",
"agent:review": "./content-agent review",
"agent:gate": "./content-agent gate check",
"cockpit": "./content-cockpit",
"editorial:report": ".venv/bin/python scripts/generate_editorial_report.py",
"status": ".venv/bin/python scripts/check_status.py",
"package:init": ".venv/bin/python scripts/init_package.py",
"refine": ".venv/bin/python scripts/start_refinement.py",
"sync:from-archive": ".venv/bin/python scripts/sync_from_archive.py",
"check:repo-links": ".venv/bin/python scripts/check_repo_links.py"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"substack-api": "^4.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0"
}
}