@kandiforge/spectacle 0.42.400 → 0.45.4

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": "@kandiforge/spectacle",
3
- "version": "0.42.400",
3
+ "version": "0.45.4",
4
4
  "description": "Spectacle server and CLI tools for KandiForge ecosystem",
5
5
  "author": "Abstract Class Consulting Inc.",
6
6
  "license": "PROPRIETARY",
@@ -20,6 +20,9 @@
20
20
  "kandiforge",
21
21
  "development"
22
22
  ],
23
+ "dependencies": {
24
+ "@kandiforge/kandi-cli": "latest"
25
+ },
23
26
  "scripts": {
24
27
  "postinstall": "node scripts/install.js",
25
28
  "test": "echo \"No tests configured\""
@@ -6,7 +6,7 @@ const https = require('https');
6
6
  const { execSync } = require('child_process');
7
7
 
8
8
  // This version MUST match package.json
9
- const RELEASE_VERSION = '0.42.400';
9
+ const RELEASE_VERSION = '0.45.4';
10
10
  const GITHUB_REPO = 'KandiForge/distribution';
11
11
 
12
12
  function downloadFile(url, destPath) {
@@ -62,7 +62,7 @@ async function install() {
62
62
  let fileName, isZip, ext;
63
63
 
64
64
  if (platform === 'darwin') {
65
- fileName = `spectacle-v${RELEASE_VERSION}-macos-universal.tar.gz`;
65
+ fileName = `spectacle-v${RELEASE_VERSION}-macos-arm64.tar.gz`;
66
66
  isZip = false;
67
67
  ext = '';
68
68
  } else if (platform === 'linux') {
@@ -78,6 +78,7 @@ async function install() {
78
78
  }
79
79
 
80
80
  // Binary names (same for all platforms, extension added based on platform)
81
+ // Note: kandi-forge and kandi-supersmall are installed via @kandiforge/kandi-cli dependency
81
82
  const binaryNames = [
82
83
  'kandi-spectacle',
83
84
  'kandi-plan',
@@ -85,9 +86,7 @@ async function install() {
85
86
  'kandi-run',
86
87
  'kandi-test',
87
88
  'kandi-deploy',
88
- 'kandi-secure',
89
- 'kandi-forge',
90
- 'kandi-supersmall'
89
+ 'kandi-secure'
91
90
  ];
92
91
 
93
92
  // Download URL from GitHub release assets