@blueprintit/shop-os-install 0.3.0 → 0.3.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/README.md CHANGED
@@ -4,19 +4,23 @@ One-command installer for **Shop OS**: Blueprint IT's AI Operating System for sm
4
4
 
5
5
  ## Quick Install (Recommended)
6
6
 
7
- Paste **one** of these commands. Everything installs automatically:
7
+ Download and run **one** of these setup scripts. Everything installs automatically:
8
8
 
9
9
  **Mac** (in Terminal):
10
10
  ```sh
11
- curl -fsSL https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-macos.sh | bash
11
+ curl -fsSL https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-macos.sh -o setup.sh
12
+ chmod +x setup.sh
13
+ ./setup.sh
12
14
  ```
13
15
 
14
16
  **Windows** (in PowerShell as Administrator):
15
17
  ```powershell
16
- irm https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-windows.ps1 | iex
18
+ irm https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-windows.ps1 -o setup.ps1
19
+ Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
20
+ .\setup.ps1
17
21
  ```
18
22
 
19
- This installs Node.js, Claude Code, Obsidian, and Shop OS in one go. You'll be prompted for your license key partway through.
23
+ This installs Node.js, Claude Code, Obsidian, and Shop OS in one go. You'll be prompted for your license key and vault location.
20
24
 
21
25
  ---
22
26
 
@@ -365,11 +365,10 @@ function unwrapShellPath(p) {
365
365
  (s.startsWith('"') && s.endsWith('"')) ||
366
366
  (s.startsWith("'") && s.endsWith("'"));
367
367
  if (wasQuoted) {
368
- // Windows "Copy as path" and PowerShell drag wrap in quotes — keep backslashes
369
- // as directory separators.
370
368
  s = s.slice(1, -1);
371
- } else {
369
+ } else if (process.platform !== "win32") {
372
370
  // Mac Terminal drag uses backslash to escape spaces and special chars.
371
+ // On Windows, backslashes are path separators — leave them alone.
373
372
  s = s.replace(/\\(.)/g, "$1");
374
373
  }
375
374
  return s.trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprintit/shop-os-install",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "One-command installer for Shop OS — Blueprint IT's AI Operating System for small businesses.",
5
5
  "type": "module",
6
6
  "bin": {