-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.76 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
{
"name": "agentflow-sdlc",
"private": false,
"type": "module",
"version": "1.0.0",
"description": "AgentFlow SDLC product: harness-neutral role-based SDLC definition, validators, skills, adapters, and release governance for multi-agent delivery.",
"license": "Apache-2.0",
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"agentflow-sdlc": "./bin/cli.mjs"
},
"scripts": {
"test": "vitest run",
"test:hooks": "node scripts/verify-hooks.mjs",
"test:workflow": "node scripts/verify-agent-workflow.mjs",
"validate:extensions": "node scripts/validate-extension-packs.mjs --allow-empty",
"cockpit": "node scripts/cockpit-server.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate:npm": "node scripts/validate-npm-package.mjs",
"validate:release": "pnpm test && node scripts/sdlc-sandbox-smoke.mjs && node scripts/cockpit-smoke.mjs && node scripts/validate-npm-package.mjs"
},
"devDependencies": {
"prettier": "^3.3.3",
"vitest": "^2.0.4"
},
"keywords": [
"agentflow",
"sdlc",
"ai-agents",
"coding-agents",
"skills",
"claude",
"codex",
"antigravity",
"pi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smota/agentflow-sdlc.git"
},
"homepage": "https://github.com/smota/agentflow-sdlc#readme",
"bugs": {
"url": "https://github.com/smota/agentflow-sdlc/issues"
},
"files": [
"assets/",
"adapters/",
"agents/",
"bin/",
"defaults/",
"docs/",
"extensions/",
"lib/",
"manifests/",
"schemas/",
"scripts/",
"skills/",
"AGENTS.md",
"AGY.md",
"CLAUDE.md",
"CODEX.md",
"README.md",
"LICENSE",
"package.json"
]
}