start-vibing-stacks 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-vibing-stacks",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "AI-powered multi-stack dev workflow for Claude Code. Supports PHP, Node.js, Python and more.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4,9 +4,28 @@
4
4
  "icon": "🐍",
5
5
  "runtime": "python",
6
6
  "requirements": [
7
- { "command": "python3", "minVersion": "3.12.0", "install": "brew install python@3.12" },
8
- { "command": "pip3", "minVersion": "23.0", "install": "python3 -m ensurepip --upgrade" },
9
- { "command": "uv", "minVersion": "0.1.0", "install": "curl -LsSf https://astral.sh/uv/install.sh | sh", "optional": true }
7
+ {
8
+ "name": "Python",
9
+ "command": "python3",
10
+ "versionFlag": "--version",
11
+ "minVersion": "3.12.0",
12
+ "installCommand": {
13
+ "macos": "brew install python@3.12",
14
+ "linux": "sudo apt install -y python3.12 python3.12-venv"
15
+ },
16
+ "versionRegex": "Python\\s+(\\d+\\.\\d+\\.\\d+)"
17
+ },
18
+ {
19
+ "name": "pip",
20
+ "command": "pip3",
21
+ "versionFlag": "--version",
22
+ "minVersion": "23.0.0",
23
+ "installCommand": {
24
+ "macos": "python3 -m ensurepip --upgrade",
25
+ "linux": "python3 -m ensurepip --upgrade"
26
+ },
27
+ "versionRegex": "pip\\s+(\\d+\\.\\d+\\.?\\d*)"
28
+ }
10
29
  ],
11
30
  "frameworks": [
12
31
  { "id": "fastapi", "name": "FastAPI + Uvicorn", "icon": "⚡" },