-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.37 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
{
"name": "github-delivery",
"version": "1.5.3",
"description": "Guided installer and safety tooling for GitHub Delivery workflows",
"type": "module",
"engines": {
"node": "^22 || ^24 || ^26"
},
"bin": {
"github-delivery": "scripts/github-delivery-cli.mjs",
"grok-trace": "scripts/grok-trace.mjs",
"cursor-trace": "scripts/cursor-trace.mjs",
"codex-trace": "scripts/codex-trace.mjs"
},
"files": [
"scripts/github-delivery-cli.mjs",
"scripts/grok-trace.mjs",
"scripts/grok-with-debug-trace.mjs",
"scripts/cursor-trace.mjs",
"scripts/cursor-with-debug-trace.mjs",
"scripts/codex-trace.mjs",
"scripts/codex-with-watchdog.mjs",
"scripts/install-codex-watchdog-hooks.mjs",
"scripts/install-skill.mjs",
"scripts/windows-install-locks.ps1",
"scripts/lib/agent-debug-trace.mjs",
"scripts/lib/agent-trace-launcher.mjs",
"scripts/lib/authority-host-client.mjs",
"scripts/lib/authority-host-install.mjs",
"scripts/lib/authority-host-release.mjs",
"scripts/lib/bootstrap-cli.mjs",
"scripts/lib/bootstrap-command.mjs",
"scripts/lib/bootstrap-install.mjs",
"scripts/lib/bootstrap-maintenance.mjs",
"scripts/lib/codex-app-server-watchdog-proxy.mjs",
"scripts/lib/codex-debug-trace.mjs",
"scripts/lib/codex-progress-watchdog.mjs",
"scripts/lib/codex-watchdog-remote-bridge.mjs",
"scripts/lib/cursor-debug-trace.mjs",
"scripts/lib/direct-execution.mjs",
"scripts/lib/distribution.mjs",
"scripts/lib/grok-debug-trace.mjs",
"scripts/lib/grok-trace-launcher.mjs",
"scripts/lib/install-lock.mjs",
"scripts/lib/installation-backups.mjs",
"scripts/lib/release-path-identity.mjs",
"scripts/lib/release-self-update.mjs",
"scripts/lib/subprocess-policy.mjs",
"scripts/lib/release-zip.mjs",
"scripts/lib/stable-release-update.mjs",
"scripts/lib/structured-debug-cli.mjs",
"scripts/lib/update-user-experience.mjs",
"scripts/lib/user-config.mjs",
"scripts/lib/watchdog-activation.mjs",
"scripts/lib/windows-install-locks.mjs",
"scripts/lib/watchdog-investigation-progress.mjs",
"scripts/lib/agent-progress-watchdog.mjs",
"scripts/lib/watchdog-progress-classifier.mjs",
"scripts/lib/watchdog-evidence-registry.mjs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Wibias/github-delivery.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "node --test \"tests/unit/*.test.mjs\"",
"reliability:gate": "node --test tests/unit/reliability-regression-gate.test.mjs tests/unit/deepseek-watchdog-incident.test.mjs",
"evals:offline": "node scripts/validate-evals.mjs",
"evals:behavioural:compare": "node scripts/compare-behavioural-evals.mjs",
"build:dist": "node scripts/build-dist.mjs",
"dist:check": "node scripts/build-dist.mjs --verify-reproducible",
"package:check": "node scripts/validate-npm-package.mjs",
"check": "node scripts/check-syntax.mjs && node scripts/policy-bundle.mjs --validate && node scripts/pre-open-gate.mjs --self-test && npm run security:repo && npm run dist:check && npm run package:check && npm run evals:offline && npm run reliability:gate && npm test",
"release:prepare": "node scripts/prepare-release.mjs",
"security:repo": "node scripts/validate-repository-security.mjs"
}
}