forked from melbazpeach-source/agentic-sdlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.57 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.57 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
{
"name": "agentic-sdlc",
"version": "2.3.0",
"description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
"type": "module",
"private": false,
"packageManager": "bun@1.2.2",
"workspaces": [
"agentic_sdlc/defaults/projects/todo-app/frontend",
"agentic_sdlc/defaults/projects/todo-app/backend",
"agentic_sdlc/defaults/projects/landing-page",
"agentic_sdlc/defaults/projects/ffmpeg-editor",
"agentic_sdlc/defaults/projects/telegram-file-manager"
],
"scripts": {
"test": "pytest tests/ -v",
"test:cov": "pytest tests/ -v --cov=agentic_sdlc --cov-report=html",
"workflow:cycle": "python agentic_sdlc/infrastructure/workflows/cycle.py",
"workflow:housekeeping": "python agentic_sdlc/infrastructure/workflows/housekeeping.py",
"brain": "python agentic_sdlc/core/brain/brain_cli.py",
"brain:status": "python agentic_sdlc/core/brain/brain_cli.py status",
"dashboard": "streamlit run agentic_sdlc/intelligence/dashboard/app.py",
"brain:sync": "python agentic_sdlc/intelligence/knowledge_graph/brain_parallel.py --sync",
"brain:full": "python agentic_sdlc/intelligence/knowledge_graph/brain_parallel.py --full",
"brain:stats": "python agentic_sdlc/intelligence/knowledge_graph/brain_parallel.py --stats",
"brain:recommend": "python agentic_sdlc/intelligence/knowledge_graph/brain_parallel.py --recommend",
"health": "python agentic_sdlc/infrastructure/validation/health-check.py",
"agent": "python agentic_sdlc/core/run.py",
"agent:list": "python agentic_sdlc/infrastructure/agent/manage.py list",
"agent:create": "python agentic_sdlc/infrastructure/agent/manage.py create",
"agent:validate": "python agentic_sdlc/infrastructure/agent/manage.py validate",
"agent:info": "python agentic_sdlc/infrastructure/agent/manage.py info",
"setup": "python agentic_sdlc/infrastructure/setup/init.py",
"release:preview": "python agentic_sdlc/infrastructure/release/release.py preview",
"release:changelog": "python agentic_sdlc/infrastructure/release/release.py changelog",
"release:version": "python agentic_sdlc/infrastructure/release/release.py version --auto",
"release": "python agentic_sdlc/infrastructure/release/release.py release",
"dev:todo:fe": "turbo run dev --filter=todo-app-frontend",
"dev:todo:be": "turbo run dev --filter=todo-app-backend",
"dev:todo": "turbo run dev --filter=todo-app-*",
"dev:landing": "turbo run dev --filter=landing-page",
"dev:ffmpeg": "turbo run dev --filter=ffmpeg-editor",
"dev:telegram": "turbo run dev --filter=telegram-file-manager",
"dev:all": "turbo run dev",
"build:todo:fe": "turbo run build --filter=todo-app-frontend",
"build:todo:be": "turbo run build --filter=todo-app-backend",
"build:todo": "turbo run build --filter=todo-app-*",
"build:landing": "turbo run build --filter=landing-page",
"build:ffmpeg": "turbo run build --filter=ffmpeg-editor",
"build:telegram": "turbo run build --filter=telegram-file-manager",
"build:all": "turbo run build",
"test:todo:fe": "turbo run test --filter=todo-app-frontend",
"test:todo:be": "turbo run test --filter=todo-app-backend",
"test:todo": "turbo run test --filter=todo-app-*",
"test:projects": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"clean:all": "turbo run clean && python -c \"import shutil; shutil.rmtree('node_modules/.cache', ignore_errors=True); shutil.rmtree('.turbo', ignore_errors=True)\"",
"preview:todo:fe": "turbo run preview --filter=todo-app-frontend",
"preview:landing": "turbo run preview --filter=landing-page",
"preview:ffmpeg": "turbo run preview --filter=ffmpeg-editor",
"preview:telegram": "turbo run preview --filter=telegram-file-manager"
},
"keywords": [
"sdlc",
"ai",
"agent",
"automation",
"workflow",
"cursor",
"copilot",
"development",
"project-management"
],
"author": "truongnat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/truongnat/agentic-sdlc.git"
},
"bugs": {
"url": "https://github.com/truongnat/agentic-sdlc/issues"
},
"homepage": "https://github.com/truongnat/agentic-sdlc#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin/",
"agentic_sdlc/",
"docs/",
"README.md",
"CHANGELOG.md",
"package.json"
],
"dependencies": {},
"devDependencies": {
"turbo": "^2.7.2"
}
}