@altairalabs/packc 1.5.3 → 1.5.5

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.
Files changed (2) hide show
  1. package/lib/installer.js +1 -1
  2. package/package.json +1 -1
package/lib/installer.js CHANGED
@@ -31,7 +31,7 @@ export function getPlatformInfo(platform = process.platform, arch = process.arch
31
31
  return { platform: mappedPlatform, arch: mappedArch };
32
32
  }
33
33
 
34
- export function getDownloadUrl(version, platform, arch, repo = 'AltairaLabs/PromptKit') {
34
+ export function getDownloadUrl(version, platform, arch, repo = 'AltairaLabs/promptarena') {
35
35
  const archiveExt = platform === 'Windows' ? 'zip' : 'tar.gz';
36
36
  const archiveName = `PromptKit_${version}_${platform}_${arch}.${archiveExt}`;
37
37
  return `https://github.com/${repo}/releases/download/v${version}/${archiveName}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@altairalabs/packc",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "type": "module",
5
5
  "description": "PromptKit Pack Compiler - Compile and validate prompt packs for LLM applications",
6
6
  "bin": {