-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.73 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.73 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
{
"name": "@agent-dispatch/docs",
"version": "0.1.0",
"description": "Documentation and verification gates for AgentDispatch.",
"private": true,
"type": "module",
"license": "Apache-2.0",
"keywords": [
"agentdispatch",
"docs",
"mcp",
"model-context-protocol",
"cloud-agents",
"subagents",
"aws-agentcore",
"agent-orchestration"
],
"scripts": {
"demo:local": "bash scripts/demo-local.sh",
"demo:record": "bash scripts/record-local-demo.sh",
"lint:launch": "node scripts/check-launch-readiness.mjs",
"lint:markdown": "markdownlint-cli2",
"lint:links": "node scripts/check-local-links.mjs",
"smoke:packages": "node scripts/smoke-packages.mjs",
"smoke:published": "node scripts/smoke-published-packages.mjs",
"status:publish": "node scripts/check-publish-dry-run.mjs",
"status:launch-summary": "node scripts/render-launch-summary.mjs",
"status:push-plan": "node scripts/render-push-plan.mjs",
"status:security": "node scripts/check-security-audit.mjs",
"status:npm": "node scripts/check-npm-version-drift.mjs",
"status:release": "node scripts/release-status.mjs",
"test": "npm run lint:markdown && npm run lint:links && npm run lint:launch",
"verify:launch": "bash scripts/verify-launch.sh",
"verify:local-e2e": "bash scripts/verify-local-e2e.sh",
"verify:aws-live": "bash scripts/verify-aws-live.sh"
},
"devDependencies": {
"markdownlint-cli2": "^0.22.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-dispatch/docs.git"
},
"bugs": {
"url": "https://github.com/agent-dispatch/docs/issues"
},
"homepage": "https://github.com/agent-dispatch/docs#readme",
"engines": {
"node": ">=20.19"
}
}