-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@opengsd/gsd-path",
"version": "1.3.0",
"description": "Disk-backed AI agent pipeline. Docs: DOCS.md (start here), QUICK.md, FULL.md, UPDATE.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/open-gsd/gsd-path.git"
},
"bugs": {
"url": "https://github.com/open-gsd/gsd-path/issues"
},
"homepage": "https://github.com/open-gsd/gsd-path#readme",
"type": "module",
"bin": {
"gsd-path": "scripts/install.mjs"
},
"files": [
"plugin.json",
"scripts/install.mjs",
"scripts/install.py",
"scripts/runtime_store.py",
"scripts/migrate_core.py",
"scripts/core_hook_gate.py",
"scripts/core_hook_settings.py",
"scripts/sync_skill_resources.py",
"scripts/wizard.mjs",
"scripts/skill-resources.json",
"scripts/_common.py",
"scripts/worktree_paths.py",
"scripts/build_recovery.py",
"scripts/state_checkpoint.py",
"scripts/roadmap.py",
"scripts/state_promote.py",
"scripts/discussion_validate.py",
"scripts/integration.py",
"scripts/archive_milestone.py",
"scripts/bootstrap_repository.py",
"scripts/detect_project.py",
"scripts/promote_lookahead.py",
"scripts/discussion_records.py",
"scripts/check_handoffs.py",
"scripts/check_docs_audit.py",
"scripts/check_task_briefs.py",
"scripts/path_config.py",
"scripts/model_policy.py",
"scripts/review_panel.py",
"scripts/jev_review.py",
"scripts/review_findings.py",
"scripts/check_update.py",
"scripts/guard_hook.py",
"scripts/git_guard.py",
"scripts/isolation.py",
"scripts/pipeline_git.py",
"scripts/pipeline_state.py",
"scripts/status_runtime.py",
"scripts/build_state.py",
"scripts/loop_run.py",
"scripts/workflow_run.py",
"scripts/dispatch_driver.py",
"scripts/task_context.py",
"scripts/lean_verification.py",
"scripts/token_budget.py",
"scripts/pipeline_undo.py",
"scripts/pipeline_diagnose.py",
"README.md",
"CHANGELOG.md",
"MIGRATE.md",
"RUNTIME.md",
"DOCS.md",
"HOOKS.md",
"QUICK.md",
"FULL.md",
"UPDATE.md",
"GUIDE.md",
"skills/",
"platforms/",
"AGENTS.md",
"WORKFLOW.md"
],
"engines": {
"node": ">=18.17"
},
"scripts": {
"install:ci": "npm ci",
"check:prereqs": "bash scripts/check-test-prereqs.sh",
"test": "node --test tests/*.test.mjs",
"test:smoke": "npm test",
"test:integration": "npm run test:python",
"test:python": "python3 -m unittest discover -s tests",
"test:sync": "python3 scripts/sync_skill_resources.py --check",
"test:daemon": "PYTHONPATH=daemon python3 -m unittest discover -s tests -p 'test_daemon_*.py'",
"verify": "npm test && npm run test:python && python3 scripts/sync_skill_resources.py --check",
"verify:release": "npm run verify && python3 scripts/check_trust_evidence.py --repo .",
"release:docs": "node scripts/update_release_docs.mjs",
"release:bump": "node scripts/bump_version.mjs --bump auto",
"prepublishOnly": "npm run verify:release"
},
"devDependencies": {
"yaml": "^2.9.1"
}
}