@package-pal/cli 0.0.46 → 0.0.47

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": "@package-pal/cli",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "description": "CLI tool exposing core PackagePal functionality.",
5
5
  "keywords": [
6
6
  "package",
@@ -13,24 +13,27 @@
13
13
  "license": "MIT",
14
14
  "type": "module",
15
15
  "dependencies": {
16
- "tar": "^7.5.9"
16
+ "tar": "^7.5.16"
17
17
  },
18
18
  "devDependencies": {
19
- "@clack/prompts": "^1.1.0",
20
- "@stricli/core": "^1.2.6",
21
- "@package-pal/core": "0.0.9",
22
- "@package-pal/util": "0.0.10",
23
- "@types/bun": "^1.3.10",
24
- "typescript": "^5.9.3"
19
+ "@clack/prompts": "^1.5.1",
20
+ "@stricli/core": "^1.2.7",
21
+ "@package-pal/core": "0.0.11",
22
+ "@package-pal/util": "0.0.11",
23
+ "@package-pal/adapter-package-json": "0.0.1",
24
+ "@package-pal/adapter-msbuild": "0.0.1",
25
+ "@types/bun": "^1.3.14",
26
+ "typescript": "^6.0.3",
27
+ "@types/node": "^25.9.2"
25
28
  },
26
29
  "optionalDependencies": {
27
- "@package-pal/cli-linux-x64": "0.0.17",
28
- "@package-pal/cli-linux-x64-musl": "0.0.17",
29
- "@package-pal/cli-linux-arm64": "0.0.17",
30
- "@package-pal/cli-linux-arm64-musl": "0.0.17",
31
- "@package-pal/cli-darwin-arm64": "0.0.17",
32
- "@package-pal/cli-darwin-x64": "0.0.17",
33
- "@package-pal/cli-windows-x64": "0.0.17"
30
+ "@package-pal/cli-linux-x64": "0.0.18",
31
+ "@package-pal/cli-linux-x64-musl": "0.0.18",
32
+ "@package-pal/cli-linux-arm64": "0.0.18",
33
+ "@package-pal/cli-linux-arm64-musl": "0.0.18",
34
+ "@package-pal/cli-darwin-arm64": "0.0.18",
35
+ "@package-pal/cli-darwin-x64": "0.0.18",
36
+ "@package-pal/cli-windows-x64": "0.0.18"
34
37
  },
35
38
  "engines": {
36
39
  "node": ">=18"
@@ -9,7 +9,7 @@ import packageJson from '../../../../package.json' with { type: 'json' };
9
9
  const require = createRequire(import.meta.url);
10
10
 
11
11
  /**
12
- * @param {{ platform: Bun.Platform, targetPackage: string }} options
12
+ * @param {{ platform: typeof process.platform, targetPackage: string }} options
13
13
  */
14
14
  export const getPathInfo = ({
15
15
  platform, targetPackage,
@@ -3,7 +3,7 @@ import {
3
3
  } from 'fs';
4
4
 
5
5
  /**
6
- * @param {{ platform: Bun.Platform, targetBinPath: string, outputBinPath: string }} options
6
+ * @param {{ platform: typeof process.platform, targetBinPath: string, outputBinPath: string }} options
7
7
  */
8
8
  export const linkExistingBinary = ({
9
9
  platform, targetBinPath, outputBinPath,
@@ -8,7 +8,7 @@ import { loadMissingBinary } from './load-missing-binary.js';
8
8
  import { validateBinaryVersion } from './validate-binary-version.js';
9
9
 
10
10
  /**
11
- * @param {{ platform: Bun.Platform, binExecutableName: string, targetPackage: string, targetVersion: string | null, targetBinPath: string | null, outputBinDir: string, outputBinBasePath: string, outputBinPath: string }} options
11
+ * @param {{ platform: typeof process.platform, binExecutableName: string, targetPackage: string, targetVersion: string | null, targetBinPath: string | null, outputBinDir: string, outputBinBasePath: string, outputBinPath: string }} options
12
12
  */
13
13
  export const prepareBinary = ({
14
14
  platform, binExecutableName, targetPackage, targetVersion, targetBinPath, outputBinDir, outputBinBasePath, outputBinPath,