-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.32 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
{
"name": "sp-devsteps",
"version": "1.0.0",
"description": "Project lifecycle orchestrator for AI-assisted development — beginner-friendly pipeline guidance, agent skill injection, and native alignment with DevControl governance",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"bin": {
"sp-devsteps": "./dist/cli.js",
"devsteps": "./dist/cli.js"
},
"files": [
"dist/",
"README.md",
"docs/getting-started.md",
"docs/install-platforms.md",
"docs/agentic-editors.md",
"docs/requirements.md",
"docs/architecture.md",
"docs/publishing.md",
"docs/adr-001-production-readiness.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
".mcp.json",
"opencode.json"
],
"scripts": {
"clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\"",
"build": "npm run clean && tsc",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"validate": "node dist/cli.js validate",
"docs:base": "node dist/cli.js docs --all",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"project-lifecycle",
"orchestrator",
"multi-agent",
"scaffolding",
"workflow",
"devops",
"codex",
"claude-code",
"mcp",
"developer-onboarding",
"devcontrol",
"agentic",
"project-governance"
],
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"execa": "^9.5.2",
"inquirer": "^12.5.2",
"js-yaml": "^4.1.0",
"simple-git": "^3.36.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.3",
"vitest": "^3.2.3"
},
"license": "MIT",
"author": {
"name": "Pedro Rojas",
"email": "pedro@solucionespro.com",
"url": "https://github.com/pedro-rojas"
},
"contributors": [
"SolucionesPro <info@solucionespro.com> (https://solucionespro.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/PRojas01/devSteps.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}